Hi guys
I have a button and a Radwindow in a page. Radwidow contains two drag and drop radgrids (same as drag and drop ragrid demo) I want Ajaxify these controls. I tried to create a RadAjaxManager like this
<telerik:RadAjaxManager runat="server" ID="radAjax" DefaultLoadingPanelID="RadAjaxLoadingPanel1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="btnAdd">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="AddRemoveItemWindow" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdPendingOrders">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdPendingOrders" />
<telerik:AjaxUpdatedControl ControlID="grdShippedOrders" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdShippedOrders">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdShippedOrders" />
<telerik:AjaxUpdatedControl ControlID="grdPendingOrders" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="UseDragColumnCheckBox">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdPendingOrders" />
<telerik:AjaxUpdatedControl ControlID="grdShippedOrders" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
When click on btnAdd, radwindow "AddRemoveItemWindow" should popup as Modal popup and then drag and drop items in each grid. Everything is working perfectly. My aim is to include btnAdd and radwindow in Radajaxmanager. When I run with above mentioned code, popup window is working good, but while dragging items from one grid to another, getting error. Anybody can help me?
I have a button and a Radwindow in a page. Radwidow contains two drag and drop radgrids (same as drag and drop ragrid demo) I want Ajaxify these controls. I tried to create a RadAjaxManager like this
<telerik:RadAjaxManager runat="server" ID="radAjax" DefaultLoadingPanelID="RadAjaxLoadingPanel1">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="btnAdd">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="AddRemoveItemWindow" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdPendingOrders">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdPendingOrders" />
<telerik:AjaxUpdatedControl ControlID="grdShippedOrders" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdShippedOrders">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdShippedOrders" />
<telerik:AjaxUpdatedControl ControlID="grdPendingOrders" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="UseDragColumnCheckBox">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdPendingOrders" />
<telerik:AjaxUpdatedControl ControlID="grdShippedOrders" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
When click on btnAdd, radwindow "AddRemoveItemWindow" should popup as Modal popup and then drag and drop items in each grid. Everything is working perfectly. My aim is to include btnAdd and radwindow in Radajaxmanager. When I run with above mentioned code, popup window is working good, but while dragging items from one grid to another, getting error. Anybody can help me?