79598970

Date: 2025-04-29 18:24:20
Score: 1
Natty:
Report link

This code works thansk to ESRI developer helping solve it.

var rows = $ ("#roomUseTable").jqxGrid ("getrows");

    for (var i = 0; i < rows.length; i++) {
        // if value of field 'OBJECTID' is in roomsAssignedData array
        if (roomsAssignedData.includes (rows[i].OBJECTID)) {
            // add row to selection
            $ ('#roomUseTable').jqxGrid ('selectrow', i);
        }
    }
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: MrKirkwood