I have a WebDataGrid that I am programaticaly databinding to a sql dataset. AutoCRUD is false, EnableAjax=false,EnableviewState and EnableAjaxViewState are both false. When I do the RowUpdating method it doesn't show the updated value until I do a manual postback. My question is, how do I generate a postback from the RowUpdating method or once it has fired (without putting a dummy button on the page to force a postback)?
Hello dbishop9,
Thank you for posting this question in our community. I am glad to see that you were able to resolve your issue.
If you have any further questions with this matter, please do not hesitate to contact me.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support
Nevermind, previously I tried using Response.Redirect(Request.Url.ToString) which didn't work, well by adding the optional True parameter to that to force it to finish all work before recalling itself works as needed. This might not be the proper way to do it but it works for what I am doing.