alfajango / jquery-dynatable

A more-fun, semantic, alternative to datatables
http://www.dynatable.com
Other
2.78k stars 363 forks source link

css class cell #282

Open rmacellaro opened 7 years ago

rmacellaro commented 7 years ago

I have slightly modified the source code to add the option of inserting a css class into the td tag of the table. I added a new parameter data-dynatable-cssclass : `

...
        </table>`

then this in (function defaultCellWriter(column, record)): if (column.cssClass) { td += ' class="' + column.cssClass + '"'; }

end this in (DomColumns add function): cssClass: $column.data('dynatable-cssclass')

Id