Update data in column of a table with HTML (DOM) sourced data.. ?
Update data in column of a table with HTML (DOM) sourced data.. ?
marcosjaule
Posts: 4Questions: 2Answers: 0
Can i do this? No database and no ajax. I have only a table and need to change one column. Now, i have a selected column .. but no have idea how can a edit all cells of a column. Example: plus 50% of a cell value. Thanks
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use
cell().data()
to update a cell's data.If you need to loop over multiple cells updating them, use
cells().every()
.Allan
thanks allan!