Hi guys,
Is it possible to duplicate a listgrid? I need to change the datasource and I do not want to effect the original listgrid, just the duplicate.
For example:
Original
Duplicate
Not sure if duplicate is the right term to use, Extend maybe reuse?
Is it possible to duplicate a listgrid? I need to change the datasource and I do not want to effect the original listgrid, just the duplicate.
For example:
Original
Code:
isc.ListGrid.create({ ID:"myCourseOverview", useAllDataSourceFields:false, dataSource: myCourseDB, autoSaveEdits:false, ...
Code:
isc.ListGrid.create({ ID:"DuplicateMyCourseOverview", duplicate:"myCourseOverview", dataSource: "DuplicateMyCourseDB" });
Comment