So.. Kinda hoping there is a really simple sollution to this one that I have yet to grasp...
I am trying to make a table where I want to be able to empty and "reset" the entries when I push a button.
Since the parameters dont really act like arrays (but still kinda do) in javascript, I am somewhat stuck at how to "empthy" the parameters making up the table.
In javascript, emptying an array would be as simple as...
var arr1 = ["a","b","c","d","e"];
arr1 = [];
This would basically empty out the array names "arr1". However I cant find a way to do this in DashBoard?
I hope this is just a case of "fridays" and getting ready for the weekend. Anyone?
I am also looking for how to count the number of rows in the table.