icon columns for edit record and delete record
icon columns for edit record and delete record

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!