icon columns for edit record and delete record
icon columns for edit record and delete record
dataTableUser
Posts: 4Questions: 2Answers: 0
when DataTables in javascript mode,
what is the best way to add two non sortable icon columns for edit record and delete record?
var dataSet = [
['Trident','Internet Explorer 4.0','Win 95+','4','X'],
['Trident','Internet Explorer 5.0','Win 95+','5','C'],
This discussion has been closed.
Answers
Set
columns.data
tonull
andcolumns.defaultContent
to the data you want to display. I use that method here: http://editor.datatables.net/examples/simple/inTableControls.htmlAllan
thank you Allan!
Working great!