How can I provide feedback to the user if an update causes a validation issue? I have a UltraWebGrid in an updatepanel and I want to somehow notify the user when an error occurs.
Mark <><
Hi,
There's actually an article for some very cool methods for this for the WebDataGrid at this link: http://help.infragistics.com/Help/NetAdvantage/ASPNET/2010.1/CLR3.5/html/WebDataGrid_Handling_Server_Side_Exceptions_Using_AJAX.html
That's what I use. For the UltraWebGrid you can get the same thing accomplished with the webdialogwindow being in your updatepanel and setting it to visible server side when the validation fails. That should work really nicely.
Ed
Perfect. That's what I was looking for. In fact, I was already heading down that path but had my dialog window outside my updatepanel.
I mentioned that specifically because I also wasted lots of time by not placing the WebDialogWindow in the updatepanel when I did this the first time.