getValue(rowIndex, ColumnName)
getValueByColumnIndex(rowIndex, columnIndex)
// Examples
let value = grid1.getValue(0, 'ceo');
let value = grid1.getValueByColumnIndex(0, 5);
setValue(rowIndex, ColumnName)
setValueByColumnIndex(rowIndex, columnIndex)
- Absolutely modify data using the setValue, getValueByColumnIndex functions.
// Examples
grid1.setValue(0, 'ceo', 'leno');
grid1.setValueByColumnIndex(0, 3, '99999');
getRow(rowIndex)
getRowByRowId(rowId)
// Examples
const row = grid1.getRow(0);
const row = grid1.getRow(1);
const row = grid1.getRowByRowId(1);
getRows()
getRows(startRowIndex)
getRows(startRowIndex, endRowIndex)
// Examples
let value;
value = grid1.getRows();
console.dir(value);
value = grid1.getRows(3); // get rowIndex 3 ~ lastRow
console.dir(value);
value = grid1.getRows(0, 5);
console.dir(value);
getSelectedRows()
// Examples
const value = grid1.getSelectedRows();
console.dir(value);
getCheckedRows()
// Examples
const value = grid1.getCheckedRows();
console.dir(value);