jquery - SlickGrid enableAddRow -
i want use enable addrow option want new row displayed @ top of grird...any suggestions; beloiw doco in slickgrid.js.
enableaddrow - (default false) if true, blank row displayed @ bottom - typing values in row add new one.
thank you!
function addrowtothetop(){ grid.getdata().splice(0, 0, {}); grid.invalidateallrows(); grid.updaterowcount(); grid.render(); }
call function add empty row @ top of grid. not effective works.
Comments
Post a Comment