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
290
can we have a check box placed in Web Data grid V14.1 and have any click event on it?
posted

can we have a check box placed in Web Data grid V14.1 and have any click event on it?

Parents
No Data
Reply
  • 71886
    Suggested Answer
    Offline posted

    Hello,

    You could handle the CellValueChanged client-side event of the WebDataGrid's Editing behavior:

            function WebDataGrid1_Editing_CellValueChanged(sender, eventArgs)
            {
                //eventArgs.get_cell().get_value()
                //eventArgs.get_oldValue()
            }

    I have attached a sample that demonstrates this, so please take a look at it.

    WDGCheckBoxClickEvent.zip
Children
No Data