Hello,
I have a grid that I have Ajaxified in my page by setting the grid as self-updating in my AjaxManager control. That is, the settings look like this:
This has worked to Ajaxify the regular grid functions of filtering and sorting just fine. What I would like to do is have the usercontrol that I load for row-editing be Ajaxified, as well. I have several radcombo boxes that I would like to update one another in the form.
Does the edit form fall within the radgrid's AjaxManager settings already (so that i shouldn't have to put in new settings for those controls?)
So far, the only way I can get these edit form combo boxes to update one another is to set them for autopostback=true. I have functions defined in the code-behind to handle the onselectedindexchanged events. I assumed that these would be used by the Ajax functionality if it worked (which it so far hasn't).
Do I need to autopostback for controls inside my usercontrol edit form? Should I be Ajaxifying them differently?
Mike
I have a grid that I have Ajaxified in my page by setting the grid as self-updating in my AjaxManager control. That is, the settings look like this:
<
telerik:AjaxSetting
AjaxControlID
=
"rgdMyGrid"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"rgdMyGrid"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
This has worked to Ajaxify the regular grid functions of filtering and sorting just fine. What I would like to do is have the usercontrol that I load for row-editing be Ajaxified, as well. I have several radcombo boxes that I would like to update one another in the form.
Does the edit form fall within the radgrid's AjaxManager settings already (so that i shouldn't have to put in new settings for those controls?)
So far, the only way I can get these edit form combo boxes to update one another is to set them for autopostback=true. I have functions defined in the code-behind to handle the onselectedindexchanged events. I assumed that these would be used by the Ajax functionality if it worked (which it so far hasn't).
Do I need to autopostback for controls inside my usercontrol edit form? Should I be Ajaxifying them differently?
Mike