Welcome Guest Search | Active Topics | Sign In | Register

on selecting menu item second tab item should be visible Options
Angel
Posted: Thursday, November 4, 2010 9:47:01 AM
Rank: Member
Groups: Member

Joined: 11/1/2010
Posts: 18
Hi

I've a tab strip of 2 tab items. second tab item should appear when i select new tab in my menu bar. I did accordingly but 2nd tab is not appearing on selecting new tab menu item. my tab strip is not in call back panel. do i need to put tab strip in call back panel to get the required functionality.
eo_support
Posted: Thursday, November 4, 2010 9:57:14 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194
Hi,

No. You do not need CallbackPanel for that.

I could not tell you why your second tab is not appearing because you basically said :"second tab item should appear...but it is not appearing". There is simply nowhere for us to start on this kind of questions. If you wish us to work an issue, try to explain very clearly what you are trying to do, how you do it, why you think it should work the way you wanted it to be a and how it is not working exactly as you intended. Also try to include the related code if needed. That will help us to understand your question and give you a clear answer.

Thanks!
Angel
Posted: Thursday, November 4, 2010 10:03:08 AM
Rank: Member
Groups: Member

Joined: 11/1/2010
Posts: 18
This is my C# code. plz guide me.

protected void Page_Load(object sender, EventArgs e)
{
EO.Web.MenuItem MI = GridMenu.Items[5];

EO.Web.MenuItem SMI = MI.SubMenu.Items[3];

if (SMI.Selected == true)
{
TabItem TI = TabStrip1.Items[1];

TI.Visible = true;
}

}
eo_support
Posted: Thursday, November 4, 2010 10:07:26 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,194


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.