We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd6d69 commit 7a77d05Copy full SHA for 7a77d05
1 file changed
src/grid/Body.mjs
@@ -1275,6 +1275,25 @@ class GridBody extends Component {
1275
!silent && me.update()
1276
}
1277
1278
+
1279
+ /**
1280
+ * @returns {Object}
1281
+ */
1282
+ toJSON() {
1283
+ let me = this;
1284
1285
+ return {
1286
+ ...super.toJSON(),
1287
+ animatedRowSorting : me.animatedRowSorting,
1288
+ bufferColumnRange : me.bufferColumnRange,
1289
+ bufferRowRange : me.bufferRowRange,
1290
+ colspanField : me.colspanField,
1291
+ highlightModifiedCells: me.highlightModifiedCells,
1292
+ rowHeight : me.rowHeight,
1293
+ selectedRecordField : me.selectedRecordField,
1294
+ selectionModel : me.selectionModel?.toJSON()
1295
+ }
1296
1297
1298
1299
export default Neo.setupClass(GridBody);
0 commit comments