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
160
igtbl_needPostBack not working
posted

Hello, 

  I'm trying to get a grid to postback after I change a cell,however igtbl_needPostBack isn't working.  I call the aftercellupdatehandler and the alert in the handler is getting called, but no postback.  is there a setting somewhere that I need to change so this will work?  I know a postback will update the database because I tried making a button action postback and that worked perfectly.  Any suggestions?

         function MainGrid_AfterCellUpdateHandler(gridName, cellId) {
            alert("test");
            igtbl_needPostBack(gridName);
        }