I am trying to make the table component with the button inside the table column in CDE Pentaho. How can it be achieved?
How to make button as one of the column inside table component in CDE Pentaho?
1.2k Views Asked by paudel.sulav At
2
There are 2 best solutions below
2

I guess it will need some work. In the Draw function of your table, you may put some javascript to manipulate the DOM and add your button : as far as I remember, the draw function receives a parameter that is a structure with the column and row index of the current cell.
Try first this code in the draw function :
function(paramdraw) {
console.log(paramdraw);
}
and look for the content of paramdraw iin the console.
Maybe there is a better way to do it...
What we do here usually is something like editing the query on the datasource with a column that output the HTML code for a button.
That should display a button. If you are not using a query as datasource, but a transformation the idea is the same. Just make the output contains a string that when interpreted by the browser is a button.
Hope it helps. =)