MicroDroid / vue-materialize-datatable

A fancy Materialize CSS datatable VueJS component.
https://overcoder.dev/vue-materialize-datatable
MIT License
179 stars 67 forks source link

Datatable Column Render function #70

Open majorpaynegh opened 3 years ago

majorpaynegh commented 3 years ago

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;
      }