You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{table: "id-table",loading: "id-loading",fields: [{title: "Col Title",field: "property.in.model",// Optional if there is a custom template.id: "id-for-filtering",// Use only when has a field value.autorefresh: Number,// Optional: Number of miliseconds.template: (row)=>{// Optional: Custom template function.return`<a href="mailto:${row.field_name}">${row.field_name}</a>`;},order: (a,b)=>{// Optional: Custom order function or disabled if is equal to false.if(a.field_name>b.field_name)return1;elseif(a.field_name<b.field_name)return-1;return0;}}, ... ],search: {id: "id-for-global-search",fields: ["property.in.model","another.property", ... ]// Optional: By default all fields.},text: {id: "id-text"},pagination: {id: "id-pagination",limit: Number// Number of results per page.}}