Fetch API
Configure the fetch property in the config object
var dashboard = new FutureLabs.Dashboard({
config: {
fetch: {
url: 'http://localhost:3010/getData'
},
tabs: {
'User Profiles': {
recordSettings:{
fields: {
Date: { name: 'Date of Birth' },
Status: { name: 'Marital Status'},
Name: { name: 'Name'},
Gender: { name: 'Gender' }
}
}
}
}
},
templateURL: 'dashboard.html',
appendTo: document.querySelector(".dashboard-container")
});Optional Fetch parameters
You can also pass an optional options object to the fetch parameter
You can also redefine the default pagination, sorting, and filtering parameters sent by the fetch API:
Last updated