i have two tabulator tables and i would like to see the selected rows (one or many) into the second table when i click on them on the first table.
the first table show rows with 10 columns. I'm tryng to get the result with the following code but when i click but i have this error:
`rowClick:function(e, id, data, row)
{
//load data
var idbo=row.getData().IDBO;
$("#mytable2").tabulator("setData", [{IDBO:row.getData().IDBO,}]); //make ajax request with advanced config options
},`
IDBO is one of the 10 columns composing a selected row in the first table.
Is it the sintax correct?
2.Am i obliged to specify all 10 columns that normally compose the first selected row?
Hi,
i have two tabulator tables and i would like to see the selected rows (one or many) into the second table when i click on them on the first table. the first table show rows with 10 columns. I'm tryng to get the result with the following code but when i click but i have this error:
`rowClick:function(e, id, data, row) { //load data var idbo=row.getData().IDBO;
IDBO is one of the 10 columns composing a selected row in the first table.
thanks a lot,