I have this working for the page in general, but I need to tie in the ajax request and responses for the grid.
Can somone tell me how to subscribe to those events , prefereable in one location in the infragistics framework. so that any Infragistic control requesting will cause the screen to grayout when the call is made and when the response is received.
Thanks.
Hello Terry,
If you want to use grayout display on AJAX response only for the grid itself you can set it like that:
this.WebDataGrid1.AjaxIndicator.BlockArea = Infragistics.Web.UI.AjaxIndicatorBlockArea.Control;
More information about configuring AJAX indicator at control level you can read here - http://help.infragistics.com/Help/NetAdvantage/ASPNET/2010.3/CLR4.0/HTML/AJAX_Indicator_Configuring_AJAX_Indicator_at_Control_Level.html
If you want to configure AJAX indicator globally you can modify “web.config” file. You can find out how here - http://help.infragistics.com/Help/NetAdvantage/ASPNET/2010.3/CLR4.0/HTML/AJAX_Indicator_Configuring_AJAX_Indicator_Globally.html
If you want to do specific actions (change properties etc.) with AJAX indicator control, you can handle the “AJAXResponse” (in control ClientSide events) event and add your “to-do” code there.
Thank you for using Infragistics components.