I have a form, on it I have two sets of Radio Button Lists, each set has AutoPostBack set to true and an event on OnSelectedIndexChanged. The goal is to have the grid show different sets of data depending on what the user selects from the Radio Buttons. The first RBL is either forms entered by the user or all, the second is all, complete or incomplete forms. By default, I have set the RBL's to have "My" selected and "Incomplete". When a user changes an RBL, the grid is refreshed with appropriate data, however if the user re-selects back to the default item, no postback happens. If I remove the AjaxManager from the page, it works, but the whole page refreshes, not just the grid. How can I make it work with the AjaxManager so no matter what is checked, the grid refreshes it's data.
Here is the AjaxManager code I have:
<
telerik:RadAjaxManager
runat
=
"server"
ID
=
"radAjaxManager"
EnableAJAX
=
"True"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"radSafetyForms"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"radSafetyForms"
LoadingPanelID
=
"radLpSafetyForms"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
<
telerik:AjaxSetting
AjaxControlID
=
"rblScope"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"radSafetyForms"
LoadingPanelID
=
"radLpSafetyForms"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
<
telerik:AjaxSetting
AjaxControlID
=
"rblComplete"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"radSafetyForms"
LoadingPanelID
=
"radLpSafetyForms"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManager
>
I'm not sure if I have the AjaxManager configured correctly or not.