Hello!
We have an application which is using the 2010 Q2 RadControls, which uses a multi-row RadTabStrip and the Outlook Skin (applied via a theme)
When we set the IsBreak property to "True" for one of the tabs, we get an ugly visible spacer between the two tab rows. (see attached file tabstripwithspacer.png.
Here is the code that creates this tabstrip...
When we remove the IsBreak property (using the default of false), it looks fine (see tabstripnospacer.png) - but then the Reordertabsonselect property doesn't work (the selected tab is not on the "front" row).
Is there a way for me to get the selected tab in front without seeing the spacer made by setting the IsBreak property?
Thanks!
We have an application which is using the 2010 Q2 RadControls, which uses a multi-row RadTabStrip and the Outlook Skin (applied via a theme)
When we set the IsBreak property to "True" for one of the tabs, we get an ugly visible spacer between the two tab rows. (see attached file tabstripwithspacer.png.
Here is the code that creates this tabstrip...
<
telerik:RadTabStrip
ID
=
"tsTabs"
Align
=
"Left"
runat
=
"server"
Width
=
"750px"
AutoPostBack
=
"True"
ReorderTabsOnSelect
=
"True"
SelectedIndex
=
"0"
>
<
Tabs
>
<
telerik:RadTab
runat
=
"server"
Text
=
"Main"
ID
=
"tabMain"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Addresses"
ID
=
"tabAddresses"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Phones"
ID
=
"tabPhones"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Notes"
ID
=
"tabNotes"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Quotes"
ID
=
"tabQuotes"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Remarket"
ID
=
"tabRemarket"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Research"
ID
=
"tabResearch"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Groups"
ID
=
"tabGroups"
IsBreak
=
"true"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Marketing"
ID
=
"tabMarketing"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Appts"
ID
=
"tabOtherInfo"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Files"
ID
=
"tabFiles"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"PreSettlement"
ID
=
"tabPreSettlement"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Perms"
ID
=
"tabPermissions"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Admin"
ID
=
"tabAdmin"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"Misc Info"
ID
=
"tabImportedInfo"
/>
<
telerik:RadTab
runat
=
"server"
Text
=
"FedEx"
ID
=
"tabFedEx"
/>
</
Tabs
>
</
telerik:RadTabStrip
>
When we remove the IsBreak property (using the default of false), it looks fine (see tabstripnospacer.png) - but then the Reordertabsonselect property doesn't work (the selected tab is not on the "front" row).
Is there a way for me to get the selected tab in front without seeing the spacer made by setting the IsBreak property?
Thanks!