Can seem to figure out why I can't create a Table from my view. I have set my 'data-sap-ui-libs' attribute in my index.html with sap.m, sap.ui.table, sap.ui.core. Even tried to use sap.ui.table.Table.
But I keep getting the error 'undefined evaluating new sap.ui.table.Table'.......
My table definition from my view:
var oTable = new sap.ui.table.Table({
columns: {label: "Label", template: "Name", setProperty: "Name"}
});
any help is appreciated.