Hi, I'm adding the RadColorPicker to an existing application that uses the AjaxToolKit TabContainer / TabPanel. The right border of the color picker is clipped if the tab is not the active tab when the page is loaded. If I make the color tab the active tab, ActiveTabIndex="1" it works ok. If ActiveTabIndex="0" the right border is clipped, class rcpRoundedRight has a height of 0.
Not sure how to tackle this. Any help is appreciated.
Thanks.
Not sure how to tackle this. Any help is appreciated.
Thanks.
<
AjaxToolKit:TabContainer
ID
=
"TabContainer1"
runat
=
"server"
Width
=
"650px"
Height
=
"400px"
ActiveTabIndex
=
"0"
>
<
AjaxToolKit:TabPanel
ID
=
"WelcomeTab"
runat
=
"server"
HeaderText
=
"Welcome"
>
<
ContentTemplate
>
<
div
style
=
"height:300px; width:300px; background-color:Blue;"
></
div
>
</
ContentTemplate
>
</
AjaxToolKit:TabPanel
>
<
AjaxToolKit:TabPanel
ID
=
"ColorTab"
runat
=
"server"
HeaderText
=
"Colors"
>
<
ContentTemplate
>
<
telerik:RadColorPicker
runat
=
"server"
ID
=
"RadColorPicker2"
PaletteModes
=
"WebPalette"
OnClientColorChange
=
"titleColorChange"
SelectedColor
=
"#e96e35"
/>
</
ContentTemplate
>
</
AjaxToolKit:TabPanel
>
</
AjaxToolKit:TabContainer
>