FuelUX数据网格未加载(使用示例)

时间:2013-05-08 12:07:33

标签: javascript datagrid fuelux

我是FuelUX的新手,所以我试图让这个工作,基于提供的示例:

require(['jquery','data.js', 'datasource.js', 'fuelux/all'], function ($, sampleData, StaticDataSource) {

    var dataSource = new StaticDataSource({
            columns: [{property:"memberid",label:"LidId",sortable:true},{property:"name",label:"Naam",sortable:true},{property:"age",label:"Leeftijd",sortable:true}],
            data: sampleData.memberdata,
            delay: 250
        });

        $('#MyGrid').datagrid({
            dataSource: dataSource,
            stretchHeight: true
        });

    });
});

以此为数据:

(function (root, factory) {
    if (typeof define === 'function' && define.amd) {
        define(factory);
    } else {
        root.sampleData = factory();
    }
}(this, function () {
    return {
        "memberdata": [{
            "memberid": 103,
            "name": "Laurens  Natzijl",
            "age": "25"
        }, {
            "memberid": 104,
            "name": "Sandra Snoek",
            "age": "25"
        }, {
            "memberid": 105,
            "name": "Jacob Kort",
            "age": "25"
        }, {
            "memberid": 106,
            "name": "Erik  Blokker",
            "age": "25"
        }, {
            "memberid": 107,
            "name": "Jacco  Ruigewaard",
            "age":"25"
        },{  /* etc */ }]
    }
}));

我没有控制台错误,没有丢失包含。 Everthing工作正常 - 它甚至看起来像正在加载。除了数据网格中没有显示任何内容,但“0项目”。

有什么建议吗?我想我做的所有例子都提供了......

编辑:14:33(阿姆斯特丹) 当我把它放在控制台中时似乎有所不同:

我的页面:

require(['jquery','data.js','datasource.js', 'fuelux/all'], function ($, sampleData, StaticDataSource) {
    var dataSource = new StaticDataSource({
            columns: [{property:"memberid",label:"LidId",sortable:true},{property:"name",label:"Naam",sortable:true},{property:"age",label:"Leeftijd",sortable:true}],
            data: sampleData.memberdata,
            delay: 250
        });
    console.debug(dataSource);
});

控制台中的第一行:

function localRequire(deps, callback, errback) { /* etc */ }

控制台中的第二行:

StaticDataSource {_formatter: undefined, _columns: Array[3], _delay: 250, _data: Array[25], columns: function…}

FuelUX示例:

require(['jquery', 'sample/data', 'sample/datasource', 'sample/datasourceTree', 'fuelux/all'], function ($, sampleData, StaticDataSource, DataSourceTree) {
    var dataSource = new StaticDataSource({
        columns: [{property: 'toponymName',label: 'Name',sortable: true}, {property: 'countrycode',label: 'Country',sortable: true}, {property: 'population',label: 'Population',sortable: true}, {property: 'fcodeName',label: 'Type',sortable: true}],
        data: sampleData.geonames,
        delay: 250
    });
    console.debug(dataSource);
});

控制台中的第一行:

StaticDataSource {_formatter: undefined, _columns: Array[4], _delay: 250, _data: Array[146], columns: function…}

控制台中的第二行:

function (deps, callback, errback, relMap) { /* etc */ }

也许这会帮助你帮助我:)。

3 个答案:

答案 0 :(得分:6)

我没有看到提供有限答案所需的所有信息。真正的魔力是datasource.js文件(你没有提供)。

我认为展示所有必要部分的一种更简单的方法是将一个JSFiddle放在一起,显示您正在使用的数据和所有必要的部分。

Link to JSFiddle of Fuel UX Datagrid sample with your data

该工具的作者亚当·亚历山大(Adam Alexander)也撰写了一个使用dataGrid的有价值的例子DailyJS Fuel UX DataGrid

// DataSource Constructor
var StaticDataSource = function( options ) {
this._columns = options.columns;
this._formatter = options.formatter;
this._data = options.data;
this._delay = options.delay;
};

StaticDataSource.prototype = {
columns: function() {
    return this._columns
},
data: function( options, callback ) {
    var self = this;

    var data = $.extend(true, [], self._data);

    // SEARCHING
    if (options.search) {
        data = _.filter(data, function (item) {
            for (var prop in item) {
                if (!item.hasOwnProperty(prop)) continue;
                if (~item[prop].toString().toLowerCase().indexOf(options.search.toLowerCase())) return true;
            }
            return false;
        });
    }

    var count = data.length;

    // SORTING
    if (options.sortProperty) {
        data = _.sortBy(data, options.sortProperty);
        if (options.sortDirection === 'desc') data.reverse();
    }

    // PAGING
    var startIndex = options.pageIndex * options.pageSize;
    var endIndex = startIndex + options.pageSize;
    var end = (endIndex > count) ? count : endIndex;
    var pages = Math.ceil(count / options.pageSize);
    var page = options.pageIndex + 1;
    var start = startIndex + 1;

    data = data.slice(startIndex, endIndex);

    if (self._formatter) self._formatter(data);

    callback({ data: data, start: 0, end: 0, count: 0, pages: 0, page: 0 });
}
};

如果您要提供标记以及“datasource.js”文件包含的内容,我可以帮助您。

我认为演示提供了许多你可能不了解的作品的信息。

答案 1 :(得分:2)

添加到creatovisguru的答案:

在他的JSFiddle示例中,分页被打破了。要解决此问题,请更改以下行:

callback({ data: data, start: start, end: end, count: count, pages: pages, page: page });

答案 2 :(得分:0)

当尝试与Django集成时,我遇到了完全相同的问题。我相信这个问题就在这条线上:

require(['jquery','data.js','datasource.js','fuelux / all'],function($,sampleData,StaticDataSource){

当使用“data.js”时,我无法指定文件扩展名,我的IDE(pycharm)会标记为“red”,因此它需要保持不带扩展名,例如“sample / data”

我最终要做的就是在一个普通的Apache设置上从/ var / www / html中的github下载完整的fuelux目录(没有django,以避免静态文件的URL.py问题)并且一切正常用他们的例子。以下是帮助您入门的步骤:

cd / var / www / html git clone https://github.com/ExactTarget/fuelux.git 你最终会在/ var / www / html / fuelux /

中使用fuelux

在浏览器中,导航至:http://foo.com/fuelux/index.html(假设您的默认文档根目录为/ var / www / html)

祝你好运!