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
465
get boolean value if edit core in enabled in any row in webdata grid
posted

hello,

how to get a boolean value if the edit row in activated in any row in the webdatagrid?

Parents
No Data
Reply
  • 2535
    Offline posted

    Hi,

    You can use the method getEditingOn(). It returns:

    undefined - there is no editing

    1 - row-editing is on

    2 - row-edit-template is on

    3 - cell-editing is on

    4 - row-adding is on

    5 - filtering is on

    Here is how can be called:

    var grid = $find("<%= WebDataGrid1.ClientID %>");
     var editngOn = grid.getEditingOn();

Children
No Data