greetings –
perhaps i dont understand how selectCells
should work.
should getCellValue
and selectCells
work similar?
https://codepen.io/edwardsmarkf/pen/KKbjddB
document.querySelector('smart-grid').getCellValue(0,'firstName' ) ; // works perfectly
document.querySelector('smart-grid').selectCells([0],['firstName'] ) ) ; // does not return anything, undefined
from documentation:
> getCellValue( rowId: string | number, dataField: string): any
> selectCells( rowIds: (string | number)[], dataFields: string[]): void