My structure is this...
MasterPage >> Content Page which includes a RadGrid >> In the RadGrid, I am using a UserControl (ascx) for the insert item.
Masterpage has ScriptManager and RadAjaxManager
Contentpage has RadAjaxProxy
UserControl has RadAjaxProxy
The UserControl is basically a table with labels, Radtextboxes and Radcomboboxes.
My usercontrol has this declaration:
----------------------------------------------------------------------------
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server" >
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="uxDirectory">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="uxProjectName" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManagerProxy>
-------------------------------------------------------------------------------
uxDirectory and uxProjectName are both RadComboBoxes
The problem I am facing is when a value is changed in the uxDirectory combobox all the "Load" events based on other controls are being fired. It is my understanding that since I have autopostback="true" on the uxDirectory, and based upon the declaration above, that only the uxProjectName control will Load. However, all my controls are reloading. This is wiping out the values saved, etc. How can I perform a Ajax postback for a specific control within a ASCX Usercontrol?
-DB