Hi Team,
I want a treetable/datatable to have a heading at the top, without using body => rows
webix.ui({ body: { rows: [ { template: "Title Of the report", height: 30 }, { view: 'treetable' //rest here, this works but I don't want this approach } ] } })
Is there a title flag in here?
webix.ui({ view: 'treetable', data: mockData, // IS ANY FLAG WHICH ADDS THIS title: "Report Title" })