Hello,
First your code does the opposite – it makes the row editable. In order to set it not editable your code should do
$(ind1).attr('editable','1');
Second you can use class to make it not editable
$(ind1).addClass('not-editable-row');
Best regards
Tony