I can remove individual instances of a row, using Javascript Row.instanceManager.removeInstance(rowIndex)but now I want to make sure that the last row left cannot be deleted. I tried usingif (Table.Row.instanceManager.count > 1) then var rowIndex = $.parent.index; Row.instanceManager.removeInstan...