This is the scenario:
RadFormDecorator on a page with a MultiPage and DropDownList inside two different PageViews.
The default PageView renders fine - all the controls are nicely designed using the FormDecorator.
On the other hand, on the 2nd PageView the FormDecorator is not doing its thing and the DropDownList keeps the default style.
All the other controls work fine in both PageViews.
The problem occurs only in Google Chrome - IE and FF work as expected. This was tested in Multiple Chrome versions - problem persists.
Here is a sample code, nothing fancy:
RadFormDecorator on a page with a MultiPage and DropDownList inside two different PageViews.
The default PageView renders fine - all the controls are nicely designed using the FormDecorator.
On the other hand, on the 2nd PageView the FormDecorator is not doing its thing and the DropDownList keeps the default style.
All the other controls work fine in both PageViews.
The problem occurs only in Google Chrome - IE and FF work as expected. This was tested in Multiple Chrome versions - problem persists.
Here is a sample code, nothing fancy:
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"ScriptManager"
runat
=
"server"
AsyncPostBackTimeout
=
"1000"
>
</
telerik:RadScriptManager
>
<
telerik:RadFormDecorator
ID
=
"rfd"
runat
=
"server"
Skin
=
"Office2010Blue"
DecoratedControls
=
"All"
/>
<
telerik:RadTabStrip
ID
=
"ts"
runat
=
"server"
Skin
=
"Office2007"
MultiPageID
=
"rp"
CausesValidation
=
"False"
SelectedIndex
=
"0"
AutoPostBack
=
"false"
>
<
Tabs
>
<
telerik:RadTab
Text
=
"Customer Information"
PageViewID
=
"rvp1"
>
</
telerik:RadTab
>
<
telerik:RadTab
Text
=
"Items"
PageViewID
=
"rvp2"
>
</
telerik:RadTab
>
</
Tabs
>
</
telerik:RadTabStrip
>
<
telerik:RadMultiPage
ID
=
"rp"
runat
=
"server"
SelectedIndex
=
"0"
>
<
telerik:RadPageView
ID
=
"rvp1"
runat
=
"server"
Selected
=
"true"
>
<
asp:DropDownList
ID
=
"DropDownList1"
runat
=
"server"
>
</
asp:DropDownList
>
</
telerik:RadPageView
>
<
telerik:RadPageView
ID
=
"rvp2"
runat
=
"server"
>
<
asp:DropDownList
ID
=
"DropDownList2"
runat
=
"server"
Width
=
"100px"
>
</
asp:DropDownList
>
</
telerik:RadPageView
>
</
telerik:RadMultiPage
>
</
form
>