我正在尝试从我的骨干集合中设置fuelux 数据网格源。示例源在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
};
}));
我的主干渲染包括以下代码来建立数据源
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
});
我收到错误未定义静态数据源。
谁能给我解释一下?或者,如果你能帮助我对教程的任何参考,它很好地解释了如何从骨干集合中设置数据源数据,我将非常感激?在我看来,fuelux dosent 有很好的文档。