|
Rank: Newbie Groups: Member
Joined: 12/8/2009 Posts: 3
|
I want to push all tabs over so the left edge lines up with data that is being added dynamically. I looked for a center justify or padding and didn't find anything. Below is the code I'm using.
<eo:TabStrip ID="TabStrip1" runat="server" ControlSkinID="None" MultiPageID="multiPage"> <LookItems> <eo:TabItem SelectedStyle-CssClass="tabSelected" NormalStyle-CssClass="tabNormal" DisabledStyle-CssClass="tabDisabled" HoverStyle-CssClass="tabHover" ItemID="_Default"> <SubGroup OverlapDepth="8" Style-CssClass="tabsTopGroup"> </SubGroup> </eo:TabItem> </LookItems> <TopGroup> <Items> <eo:TabItem OnClickScript="javascript:eo_Callback('CallbackPanelDetail', '0');" Text-Html="" Visible="false" PageViewID="page1" /> <eo:TabItem OnClickScript="javascript:eo_Callback('CallbackPanelDetail', '1');" Text-Html="" Visible="false" PageViewID="page2"/> <eo:TabItem OnClickScript="javascript:eo_Callback('CallbackPanelDetail', '2');" Text-Html="" Visible="false" PageViewID="page3"/> <eo:TabItem OnClickScript="javascript:eo_Callback('CallbackPanelDetail', '3');" Text-Html="" Visible="false" PageViewID="page4"/> </Items> </TopGroup> </eo:TabStrip> <eo:MultiPage runat="server" id="multiPage" width="100%"> <eo:PageView ID="page1" runat="server" CssClass="pageView"> <asp:Literal ID="litTab0" runat="server"></asp:Literal> </eo:PageView> <eo:PageView ID="page2" runat="server" CssClass="pageView"> <asp:Literal ID="litTab1" runat="server"></asp:Literal> </eo:PageView> <eo:PageView ID="page3" runat="server" CssClass="pageView"> <asp:Literal ID="litTab2" runat="server"></asp:Literal> </eo:PageView> <eo:PageView ID="page4" runat="server" CssClass="pageView"> <asp:Literal ID="litTab3" runat="server"></asp:Literal> </eo:PageView> </eo:MultiPage>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I am not exactly sure what you are trying to do. Can you post a screen shot? Your code is fine but because all items are set to invisible, so there is no visible item to be seen. Also we do not have your .css file, so we don't know what you have in there either.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 12/8/2009 Posts: 3
|
how do I attach documents/screen shots??
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You will need to put the image file on your server and then link to it from the forum. Let us know if you can not do that.
Thanks!
|
|
Rank: Newbie Groups: Member
Joined: 12/8/2009 Posts: 3
|
not possible, as it is password/user id protected. any other suggestions?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
You can email to us if you wish to. We will PM you the email address. Please also include a test page that demonstrates what you have tried.
Thanks!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
We have received the screenshot you sent to us. I am assuming that you wanted to use a TabStrip to implement the side bar on the left side that contains "Strategy", "Performance", etc. If that's the case, then you will need to use a Menu, not a TabStrip to do it. You can set the Menu's Orientation property to "Vertical". The rest is very much the same expect that you won't be using a MultiPage control, which shouldn't be a problem for you because you are already using CallbackPanel to update the contents.
Thanks!
|
|