I am new to Angular and angular-datatables. This is a pretty general question. I see that you can populate a table easily with a JSON file like so:
var vm = this;
vm.dtOptions = DTOptionsBuilder.fromSource('data.json')
I however, have my row data as an array of Objects, each object being a row on the table. I am wondering if JSON is the only way to populate the table. I cannot seem to populate my table with my array of Objects.