Can someone please point me in the right direction.
I have looked at the DataTables website and found what I think is the right thing: DataTables example - Add rows
I’ve studied the including sample file, but with no code to add rows I’m just trying different things and wasting a lot of time.
My code at the moment, which isn’t working looks like this.
Function FillDataTable()
dt.settings.columns = columns1
dt.settings.data = data1
dt.build()
End Function
Function Button2_onclick()
table = $("dt").DataTable()
$(table.row.add(["a","b","c","d"]).draw)
FillDataTable()
End Function
Any help appreciated. I know DataTables is a big topic and NSBasic can’t cover everything, but some more examples on using the datatable would be great.