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.
|
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!
|
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; } }
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
|