Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('#matters-table').DataTable({
  3. columns: [
  4. { data: "0" },
  5. { data: "1" },
  6. { data: "Status" }, // is capitalized when rendered
  7. { data: "3" }
  8. ],
  9. columnDefs: [
  10. {"targets":2,"render": function(data) {
  11. return data[0].toUpperCase() + data.slice(1);
  12. }}
  13. ],
  14. data: mattsText,
  15. ... // --------------- irrelevant info.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement