When i do a postback with RadButtons toggletype radio and have specific groupnames, it looses the groupname on postback and ajax panel wrapper. however i put asp:RadioButtons with their own specific groupnames and it doesnt have a problem, they still recognize each other.
So first time in the form, all the buttons behave accordingly, respecting the groupnames. After the save button is hit and a post back occurs the telerik buttons lose radio groupname functionally, but the standard asp buttons do not. Is there a workaround?
Thanks!
<
telerik:RadAjaxManager
runat
=
"server"
ID
=
"RadAjaxManager1"
DefaultLoadingPanelID
=
"RadAjaxLoadingPanel1"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"RadButtonSetupSave"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadAjaxPanelMain"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
<
ClientEvents
OnResponseEnd
=
"OnResponseEnd"
OnRequestStart
=
"OnRequestStart"
/>
</
telerik:RadAjaxManager
>
<
telerik:RadAjaxLoadingPanel
runat
=
"server"
ID
=
"RadAjaxLoadingPanel1"
ToolTip
=
"Please wait..."
Height
=
"50px"
Width
=
"50px"
/>
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
/>
<
telerik:RadAjaxPanel
runat
=
"server"
ID
=
"RadAjaxPanelMain"
Width
=
"1000px"
Height
=
"1000px"
>
<
div
style
=
"margin: 5px;"
>
<
telerik:RadButton
runat
=
"server"
ID
=
"RadButtonSetupSave"
Text
=
"Save"
AutoPostBack
=
"true"
/>
<
div
style
=
"float: left; width: 100%; margin: 15px;"
>
<
div
style
=
"float: left; width: 100%; margin: 5px;"
>
<
telerik:RadButton
runat
=
"server"
ID
=
"RadButton1"
ButtonType
=
"ToggleButton"
Text
=
"RadButton1"
ToggleType
=
"Radio"
AutoPostBack
=
"false"
GroupName
=
"GroupNameRadButton"
/>
</
div
>
<
div
style
=
"float: left; width: 100%; margin: 5px;"
>
<
telerik:RadButton
runat
=
"server"
ID
=
"RadButton2"
ButtonType
=
"ToggleButton"
Text
=
"RadButton2"
ToggleType
=
"Radio"
AutoPostBack
=
"false"
GroupName
=
"GroupNameRadButton"
/>
</
div
>
</
div
>
<
div
style
=
"float: left; width: 100%; margin: 15px;"
>
<
div
style
=
"float: left; width: 100%; margin: 5px;"
>
<
asp:RadioButton
runat
=
"server"
ID
=
"RadioButton1"
Text
=
"RadioButton1"
AutoPostBack
=
"false"
GroupName
=
"GroupNameRadioButton"
/>
</
div
>
<
div
style
=
"float: left; width: 100%; margin: 5px;"
>
<
asp:RadioButton
runat
=
"server"
ID
=
"RadioButton2"
Text
=
"RadioButton2"
AutoPostBack
=
"false"
GroupName
=
"GroupNameRadioButton"
/>
</
div
>
</
div
>
</
div
>
</
telerik:RadAjaxPanel
>
So first time in the form, all the buttons behave accordingly, respecting the groupnames. After the save button is hit and a post back occurs the telerik buttons lose radio groupname functionally, but the standard asp buttons do not. Is there a workaround?
Thanks!