バックボーン コレクションから 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
});
エラー StaticDataSource is not defined が表示されます。
誰か私にこれを説明できますか?または、バックボーン コレクションから datssource データを設定する方法を説明している tutorail への参照を手伝っていただければ幸いです。私の見解では、fueluxには十分なドキュメントがありません。