Hi
Does anyone know if it is possible to return multiple column values when setting the onClickMethod?
The table I am using for the tree view is a multi-key based table and I need both values to act on the selection.
eg.
1 value works
binding.setMethodToCallOnClick(onNodeClick , ‘id_1’);
2 values not working
binding.setMethodToCallOnClick(onNodeClick , ‘id_1’, ‘id_2’);
Thanks