I'am working on a project with touch screen, barcode and table.
Barcode input is in a table cell.
With start Up page event I can select a cell with a script:
self.getChild(Table).props.selection.selectedColumn = 'barcode'
self.getChild(Table).props.selection.selectedRow = 0
Can I make this cell also editable for not need to touch the cell?
(blinking cursor in the cell)
I've already done this with element .focus() with a few labels, but how with tables?
The table component requires an input to begin editing, this is chosen by the "allowEditOn" property. This property requires a "click" of some sort to edit the cell, as the properties of the table show below.