我想设置从我的骨干收集fuelux DataGrid的来源。 示例的源是在这里https://github.com/ExactTarget/fuelux/tree/master/sample 。
我累得像
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define(factory);
} else {
root.sampleData = factory();
}
}(this, function () {
return {
"geonames": new mycollection ///this will retrurn new collection array as in example
};
}));
而我的骨干呈现由下面的代码instatate数据源
var dataSource = new StaticDataSource({
columns: [
{
property: 'username',
label: 'Name',
sortable: true
},
{
property: 'username',
label: 'Country',
sortable: true
},
data: this.collection,
delay: 250
});
$('#MyGrid').datagrid({
dataSource: dataSource,
stretchHeight: true
});
我得到的是没有定义的错误StaticDataSource中。
任何人都可以解释我这个? 否则我将不胜感激,如果你能和我一起帮助这很好地解释了如何设置从骨干网收集datssource数据tutorail的内容? fuelux dosent在我看来很好的文档。