drawType none on create vs edit
drawType none on create vs edit
When doing a drawType none on an edit with editor the table reacts as expected and the cells are updated without doing a full redraw (i.e. ajax request in my case) which is great when you have large initial queries. However, when doing a create you would expect the created row to become visible without doing the full redraw.
Am I missing something or is a full draw required for the created row to become available? I see its added to the table data. If thats so is there anyway I can 'trick' the table by saving the current data into localstorage, swapping out the ajax method to localstorage then doing the redraw before swapping back to ajax?
Or are there any other methods to get the created rows in to the table without the draw?