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
7566
Requested record cannot be found by key
posted

How can I force an update on any outstanding edits in a webdatagrid clientside in js?



somthing like



webdatagrid1.update;

  • 7566
    posted
    You can initiate an Ajax callback from the WebDataGrid using the _callbackManager . Here is some sample code for doing that:


    var callbackObject = ig_controls.WebDataGrid1._callbackManager.createCallbackObject();


    ig_controls.WebDataGrid1._callbackManager.execute(callbackObject);





    If you want to observe or set the Async mode state and postback URL (among other settings) using:


    ig_controls.WebDataGrid1._callbackManager.getAsync();
    ig_controls.WebDataGrid1._callbackManager.setAsync(true);


    ig_controls.WebDataGrid1._callbackManager.getURL();
    ig_controls.WebDataGrid1._callbackManager.setURL(true);