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
410
Not activate cell when check box is checked
posted

Hello,

Is it possible not to activate a give cell when the check box is selected for that cell or a way to cancel the activation but have the check occur?

 Later,

 Mike

  • 5118
    posted

    Hello Mike,

     Looks like you want to handle the WebGrid's client side event of BeforeCellChangeHandler and if the cell is the checkbox cell then stop the activation but allow the check to toggle... something like this:

     function UltraWebGrid1_BeforeCellChangeHandler(gridName, cellId){

        var cell = igtbl_getCellById(cellId);

        if (cell.Column.Key == "CheckBoxCol"){

            return true;

        }

    }