Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
4110
Manual postback from RowUpdating
posted

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)?

  • 7566
    posted

    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

  • 4110
    Verified Answer
    posted

    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.