Hello!,
I just binded a text field to a table cell with this expression:
{..../TablaInventario.props.data}[{this.custom.selectedRow}]['Activo']
where the text field this.custom.selectedRow == 0 (first row)
Activo is the name of 1st column
i getting this error
The value 500470725 is right...I don´t know why is not showing on the text field.
Is the TablaInventario.props.data a dataset or an array?
It looks like its already selecting the 5004... with the just [0]. so the ['Activo'] is casing the error
2 Likes
Hello Victor, it is a dataset
Later on can be modified through a multiselect filter.
in the expression language you need to use a slightly different syntax on a datatable. -> datatable[row,column]
{..../TablaInventario.props.data}[{this.custom.selectedRow},'Activo']
4 Likes
Yeah!, that´s it, thank you Chris.