or
I have a telerik radstrip with two radtabs on my page which is linked to a radmultipage with two pages and the each of the pages have a radgrid on it. I hide/show the radstrip on a button click.
sometimes the radtab style changes unexpectedly and showing it as bulleted rather than tabs as in attached image.
when the page loads first time I do not show the tab. Clicking on the button shows the tab and it is showing up properly as in attached image 1. Then I hide the tab by clicking the button again and make some drop down selection and then click the button again to show the tab. This time my selection causes the grids on the tab to show some data. But now the tab style is changed unexpectedly as in attached image 2.
please help.
<%@ Page Title="" Language="C#" AutoEventWireup="true" CodeBehind="ActivityProperties.aspx.cs" Inherits="BAC.IRIS.UI.Web.ActivityProperties" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
id
=
"Head1"
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
style
=
"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px;"
>
<
form
id
=
"Telerik"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
telerik:RadFormDecorator
ID
=
"RadFormDecorator1"
runat
=
"server"
DecoratedControls
=
"All"
EnableRoundedCorners
=
"true"
Skin
=
"Black"
/>
<
h4
>Test</
h4
>
<
table
id
=
"LeftColumn"
cellpadding
=
"3"
cellspacing
=
"0"
width
=
"100%"
>
<
tr
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:Label
ID
=
"lblActivityIDDesc"
runat
=
"server"
Text
=
"Activity ID: "
/>
</
td
>
<
td
>
</
td
>
<
td
align
=
"left"
>
<
telerik:RadTextBox
ID
=
"radActivityID"
runat
=
"server"
ReadOnly
=
"true"
/>
</
td
>
</
tr
>
<
tr
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:Label
ID
=
"Label1"
runat
=
"server"
Text
=
"Activity Type: "
/>
<
asp:Label
ID
=
"Label2"
runat
=
"server"
Text
=
"*"
/>
</
td
>
<
td
>
</
td
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:DropDownList
ID
=
"ddlActivityType"
runat
=
"server"
>
<
asp:ListItem
Text
=
"Test Item"
Value
=
"1"
/>
</
asp:DropDownList
>
</
td
>
</
tr
>
<
tr
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:Label
ID
=
"Label3"
runat
=
"server"
Text
=
"Activity Type: "
/>
<
asp:Label
ID
=
"Label4"
runat
=
"server"
Text
=
"*"
/>
</
td
>
<
td
>
</
td
>
<
td
align
=
"left"
valign
=
"top"
>
<
select
id
=
"select1"
name
=
"ddlTest"
>
<
option
value
=
"1"
>Test Item</
option
></
select
>
</
td
>
</
tr
>
</
table
>
</
form
>
</
body
>
</
html
>