I want to make sure specific Balances are NOT Allocatable in MMS121 List-Panel, and although I have the logic working just fine, it is reverting back to allowed as soon as User scrolls down and back up again.
How can I make sure the change made to the Grid Row Column is permanent (at least until the next refresh of the page)?
This is the code that works fine:
for (let i = 0; i < list.getData().getLength(); i++) {
if($("#R" + (i+1) + "C9").hasClass("edit-cell")) {
$("#R" + (i+1) + "C9").removeClass('edit-cell');
}
}
Not sure how to make this class removal from the Field "stick".