I'm trying to use 'd2/sdk/widgets/nodestable/nodestable.view', and it keep gives me error on "this.options.d2tableColumns is not a constructor"
here's my code
var CaseFolderView = NodesTableView.extend({
constructor: function CaseFolderView(options) {
options = options || {};
options.className = 'my-table-view';
options.collectionClass= NodeCollection
NodesTableView.__super__.constructor.call(this, options);
},
})
Also how do I set the starting point of this nodestable, i want it to open a specific folder when i initiate it.
Can you give me a sample to make this work? Thanks