| <p> |
| <span>List:</span> |
| </p> |
| <p> |
| <span>Item 1</span> |
| <p> |
| <span>Item 2</span> |
| </p> |
| </p> |
| <p><span>List:</span></p> |
| <p><span>item1;</span></p> |
| <p><span>item2;</span></p> |

I have a tab strip that is getting an odd "dot" between the rows of the tabs. I simplified the code below.
| <rad:radtabstrip id="Radtabstrip1" runat="server" Skin="Vista" SelectedIndex="0" Align="Justify" ReorderTabsOnSelect="true" Width="933px"> |
| <Tabs> |
| <rad:RadTab id="Tab0" runat="server" Text="Summary" value="999"></rad:RadTab> |
| <rad:RadTab id="Tab2" runat="server" Text="Summary" value="999"></rad:RadTab> |
| <rad:RadTab id="Tab3" runat="server" Text="Summary" value="999"></rad:RadTab> |
| <rad:RadTab id="Tab4" runat="server" Text="Summary" value="999" IsBreak="true"></rad:RadTab> |
| <rad:RadTab id="Tab5" runat="server" Text="Summary" value="999"></rad:RadTab> |
| <rad:RadTab id="Tab6" runat="server" Text="Summary" value="999"></rad:RadTab> |
| <rad:RadTab id="Tab7" runat="server" Text="Summary" value="999"></rad:RadTab> |
| <rad:RadTab id="Tab8" runat="server" Text="Summary" value="999"></rad:RadTab> |
| <rad:RadTab id="Tab9" runat="server" Text="Summary" value="999"></rad:RadTab> |
| </Tabs> |
| </rad:radtabstrip> |
The customer for this site is for is very picky and I would like to get this resolved.

| var InputID = '<%= RadDateInput1.ClientID %>'; |
| var Input = document.getElementById(InputID); |
| if(Input) { Input.style.display = ''; } |

I have a RadGrid that allows the user to use groups. In the commandItemTemplate I want to hide or show an image depending on whether the user has created any groups in the grid or not.
I tried the line in bold but it does not work as I get a parse error as follows:
Cannot create an object of type 'System.Boolean' from its string representation '<%= RadGridList.MasterTableView.GetItems(GridItemType.GroupHeader).Length > 0 ? "true" : "false" %>' for the 'Visible' property.
Any suggestions are appreciated.
<CommandItemTemplate>
<asp:LinkButton ID="LinkButton" runat="server" CommandName="InitInsert" Visible='<%# !RadGridList.MasterTableView.IsItemInserted %>'>
<img src='AddRecord.gif' />
<asp:Label ID="lbl1" runat="server" Text='Add New Record' /></asp:LinkButton>
<asp:LinkButton ID="lbExpandCollapse" runat="server" CommandName="ExpandCollapseAll" Visible='<%= RadGridList.MasterTableView.GetItems(GridItemType.GroupHeader).Length > 0 ? true : false %>
'>
<img src="ExpandCollapse.jpg">
</asp:LinkButton>
</CommandItemTemplate>

| <telerik:RadTabStrip ID="rtsMine" runat="server" MultiPageID="rmpMine" OnClientTabSelecting="OnSelecting" | |
| OnTabClick="rtsMine_TabClick" Width="100%" SelectedIndex="0"> | |
| <Tabs> | |
| <telerik:RadTab PageViewID="rpvMineCoreData" Text="Mine Core Data" runat="server" Value="MineCoreData"> | |
| </telerik:RadTab> | |
| <telerik:RadTab PageViewID="rpvMineDetails" Text="Mine Details" runat="server" Value="MineDetails"> | |
| </telerik:RadTab> | |
| </Tabs> | |
| </telerik:RadTabStrip> |
| <telerik:RadMultiPage ID="rmpMine" runat="server" Width="100%" SelectedIndex="0"> | |
| <telerik:RadPageView ID="rpvMineCoreData" runat="server" Width="100%"> | |
| <table width="100%" cellspacing="3" style="border-style:outset; border-width:1px; border-color:#333333; text-align:center;" rules="all" | |
| cellpadding="2"> | |
| <tr><td class="fieldheader">Segments</td></tr> | |
| </table> | |
| </telerik:RadPageView> | |
| <telerik:RadPageView ID="rpvSKUDetails" runat="server" Width="100%"> | |
| <table width="100%" cellspacing="3" style="border-style:outset; border-width:1px; border-color:#333333; text-align:center;" rules="all" | |
| cellpadding="2"> | |
| <tr><td class="fieldheader" colspan="2"> | |
| Additional Details</td></tr> | |
| </telerik:RadPageView> | |
| </telerik:RadMultiPage> | |
http://www.telerik.com/help/aspnet-ajax/get-previously-selected-tab.html )and )and )and use it to update various controls and Session variables. Now, the problem is, the moment I tie the TabClick event to the TabStrip, I cannot navigate to another tab from the one that is selected. If I click on a different tab, the "Ajax submit" (for want of a better term) fires but the contents shown are that of the inital tab and not the newly selected one. I tried setting selected=True at the tab / page level instead of setting the SelectedIndex at the TabStrip/MultiPage level, but no luck.
I set the Selected=True/SelectedIndex=0 per the reply to my earlier forum post here (http://www.telerik.com/community/forums/aspnet-ajax/tabstrip/tab-contents-are-not-displayed-on-initial-load.aspx) Please can you help me sort this out?
Thanks,
Sreejath