I know this is a simple issue, but I cannot find where to activate the wait indicator for the UltraWebGrid. Can anyone point me in the right direction? Thanks.
Hi dbishop9,
Thank you for posting in the community.
You can enable UltraWebGrid's progress indicator by setting the EnableProgressIndicator property in the grid's DisplayLayout to true.
Note that the UltraWebGrid control is now outdated and as of .NetAdvantage 2011 Volume 2 is no longer included in our product package. I would suggest that you consider switching to the WebDataGrid/WebHieararchicalDataGrid. More information regarding these controls is available at:
http://help.infragistics.com/NetAdvantage/ASPNET/2011.2/CLR4.0/?page=Web_WebDataGrid_WebDataGrid.html
Additional samples demonstrating the features of these grids can be found at:http://samples.infragistics.com/aspnet/
Please let me know if this helps.
Please feel free to contact me if you need further assistance with this matter.
Thank you for your reply.
Just want to add that you could display/hide the progress indicator programmatically using BLOCKED SCRIPT
igtbl_getGridById("UltraWebGrid2").getProgressIndicator().display(); igtbl_getGridById("UltraWebGrid2").getProgressIndicator().hide();
igtbl_getGridById("UltraWebGrid2").getProgressIndicator().display();
igtbl_getGridById("UltraWebGrid2").getProgressIndicator().hide();
Please feel free to contact me if I can be of assistance regarding this matter.
Thanks, Peter. Sorry I haven't responded before now on this, I've just been busy. I've enabled the progress indicator, but it still doesn't display. I don't use the batch update, just the rowedittemplate and sorting. I've resorted to using the ajax updatepanel and updateprogress controls. Even on sorting, it doesn't display the indicator. I'm sure I have a conflicting setting or something inhibiting it, but I'm not sure what it would be. Thanks much for the help on this.