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
1230
In cellValueChange event, get current row's hiddenField
posted

In Webdatagrid, how can one find hidden field in cellValueChange event for current row?

Parents
  • 845
    Offline posted

    Hello Birendra,

    Thank you for contacting Infragistics Developer Support!

    If by hidden field you mean a cell in a hidden column of the grid accessing it client side is pretty straightforward.

    function handler(sender, args) {

      var row = args.get_cell().get_row();

      // Get cell by index

      var targetCell = row.get_cell(index);

      // or get by column key

      var targetCell = row.get_cellByColumnKey(key);

      ....

    }

    Feel free to contact me for further information.

Reply Children