|
Rank: Newbie Groups: Member
Joined: 7/20/2007 Posts: 3
|
When I create a tabstrip with "Style1", I continually get a blank space before the end of the tab. It makes the tab look broken into 2 pieces. I thought this was a product of not having the license, but now that I have purchased the license, I'm still getting the spaces.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
No. It has nothing to do with license. The only difference between having an license and without a license is the license warning message. Can you post your TabStrip definition so that we can take a look?
|
|
Rank: Newbie Groups: Member
Joined: 7/20/2007 Posts: 3
|
<td><br> <table cellSpacing="0" cellPadding="0" border=0 width=100%> <tr> <td vAlign="top" align="left" width="110" bgColor="#001144"></td> <td align="left"> <eo:TabStrip ID="Tabstrip1" runat="server" ControlSkinID="None"> <DesignOptions></DesignOptions> <LookItems> <eo:TabItem ItemID="_TopGroup"></eo:TabItem> <eo:TabItem ItemID="_TopLevelItem"></eo:TabItem> <eo:TabItem ItemID="_Separator" IsSeparator="True"></eo:TabItem> <eo:TabItem ItemID="_Default" RightIcon-SelectedUrl="00010226" RightIcon-Url="00010223" LeftIcon- SelectedUrl="00010224" LeftIcon-Url="00010221" NormalStyle-CssText="color: #606060" Image-Mode="TextBackground" Image-BackgroundRepeat="RepeatX" Image-Url="00010222" Image-SelectedUrl="00010225" SelectedStyle-CssText="color: #2f4761; font-weight: bold;"> <SubGroup Style-CssText="font-family: tahoma; font-size: 8pt; background-image: url(00010220); background-repeat: repeat-x; cursor: hand;" OverlapDepth="0"></SubGroup> </eo:TabItem> </LookItems> </eo:TabStrip> </td> </tr> </table> </td>
* NOTE: I load the tabitems programmatically with the following code; although, I used the tabitems tags and that caused the same thing.
EO.Web.TabItem mItem = new EO.Web.TabItem(); mItem.NavigateUrl = childnode.Attributes.GetNamedItem("URL").Value.ToString(); mItem.Text.Html = childnode.Attributes.GetNamedItem("Label").Value.ToString(); Tabstrip1.Items.Add(mItem);
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I tried that and I see the TabStrip fills the whole containing TD without leaving any space on the right side (I verified this by setting "border=1" on the enclosing table). Can you also try it on a new blank page? A lot of the time it has to do with the styles rules (external css files, for example) that exist in your page.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 7/20/2007 Posts: 3
|
Yeah, commented out the stylesheet and everything looks great. It has something to do with my stylesheet.
Thank you!
|
|