我想從我的骨幹收集設置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
};
}));
我的骨幹呈現由下面的代碼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,我會非常感激。在我看來,加油劑劑量有很好的文檔。
它已經解決了http://stackoverflow.com/questions/15764474/constructing-fuelux-datagrid-datasource-with-custom-backbone-collection?noredirect=1#comment22409076_15764474 – Lasang