clicking on the edit button renders all children of a
parent element higher up the ancestor hierarchy editable, included those not on the same level as the edit element..
Proposed solution: Replace ($button.parents('tr') with ($button.closest('tr')
Thanks
if (!activated) {
// Change to edit mode for all columns in reverse way.
_$($button.parents('tr').find('td.tabledit-view-mode').get().reverse()).each(function() {_
Mode.edit(this);
});
}
Hello,
clicking on the edit button renders all children of a
Proposed solution: Replace ($button.parents('tr') with ($button.closest('tr')
Thanks