Tables

overview

Jq Table





let rd = await import("/lib/davinci/v1.0.0/davinci.mjs");
let html = await import("/lib/davinci/ctrls/jq-table/v1.0.0/jq-table.mjs");
let table = html.table({
  target:'content',
  items:[{name:'dan',age:12},{name:'dan2',age:13},],
  config:{
    width: '100%',
    height: '100%',
    sortable: true,
    filterable: true,
    altrows: true,
  }
});
rd.render(table);
				


Try it!

Contents