Hi,
In my page, am having many tabs.Within every tab, Grids are available.
Grids are having insert/edit/delete operations. While inserting/editing/deleting , the page fully got postback.
In order to reduce the page postback am using radajaxmanger,i put following lines
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="grdIssues">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdIssues" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdMessages">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdMessages" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdLinks">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdLinks" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdManufacturers">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdManufacturers" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
But sometimes, it is working.Mostly page postback is happening while doing grid(insert/edit) operations.
i dont want postback while doing grid insert/edit/delete .
and how can i put the ajax update controls for tabs and Grids?tabs may be the problem?
Thanks for your help
In my page, am having many tabs.Within every tab, Grids are available.
Grids are having insert/edit/delete operations. While inserting/editing/deleting , the page fully got postback.
In order to reduce the page postback am using radajaxmanger,i put following lines
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="grdIssues">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdIssues" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdMessages">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdMessages" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdLinks">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdLinks" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="grdManufacturers">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdManufacturers" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
But sometimes, it is working.Mostly page postback is happening while doing grid(insert/edit) operations.
i dont want postback while doing grid insert/edit/delete .
and how can i put the ajax update controls for tabs and Grids?tabs may be the problem?
Thanks for your help