jquery-tabledit
jquery-tabledit copied to clipboard
Remove specifics input cells
Hello, here I make a contribution: If you want to disable only one cell or a few cells, selectively just add a class in that cell in its html structure, for example .input-disabled and then add in javascript onDraw: function () { $ (". input-disabled input"). remove (); }, and tabledit will not show the input inside the cell. I hope it serves someone