After displaying the rows, I don't see the corresponding checkboxes on the rows with records..
When I create subtasks and display the delete rows button, I don't see the appropriate checkboxes to delete those rows, could someone help me find the error? Thank you.
e
Assigne the rowID, and whenever you want to edit a specific row, you will send the rowID with it:
<input type="checkbox" id="chk_1">
<input type="checkbox" id="chk_2">
<input type="checkbox" id="chk_3">
var checkBoxInfo = targetCheck.split('_');
//checkBoxInfo[0] => chk
//checkBoxInfo[1] => rowID
//How to edit a row? send rowID and value like this
//editRow(checkBoxInfo[1], 10)