vue-materialize-datatable icon indicating copy to clipboard operation
vue-materialize-datatable copied to clipboard

Datatable Column Render function

Open majorpaynegh opened this issue 4 years ago • 0 comments

How can i use the render function of datatables to render rows??

render(row,cell,index){ let data = ""; if (row.status == "active") { data = ''+row.status+''; } if(row.status == 'inactive'){ data = ''+row.status+''; }

        return data;
      }

majorpaynegh avatar Jan 13 '21 17:01 majorpaynegh