This question is locked. New answers and comments are not allowed.
We wanted to add our new grid rows to the end instead of the top (by default).
I have accomplished this by:
Alter File telerik.gid.editing.js
In function this.insert
Change container.prepend(tr);
to container.append(tr);
This will make your row go to the bottom of the grid assuming you are using the uncompressed version of the file.
The same thing can be changed in the minimized version as well.
Keep in mind that you may need to write some jQuery to select the cell of the last row instead of the default on addRow is to select the first row's cell.
Thanks,
Jed Racine
I have accomplished this by:
Alter File telerik.gid.editing.js
In function this.insert
Change container.prepend(tr);
to container.append(tr);
This will make your row go to the bottom of the grid assuming you are using the uncompressed version of the file.
The same thing can be changed in the minimized version as well.
Keep in mind that you may need to write some jQuery to select the cell of the last row instead of the default on addRow is to select the first row's cell.
Thanks,
Jed Racine