How can I make rows of a table clickable?
For e.g. say I want to perform some function on Clicking a specific row of a table. How can I do this?
How can I make rows of a table clickable?
For e.g. say I want to perform some function on Clicking a specific row of a table. How can I do this?
Hi,
You can use:
<CDataTable
@row-clicked=“rowClicked”
…
The rowClicked
method will receive the clicked item.