Dojox.grid.DataGrid与空数据

时间:2013-03-17 18:38:02

标签: dojox.grid.datagrid dojo

我的问题是数据网格没有出现我需要它为空,所以我可以添加项目来与现有的FilteringSelect Formatter建立关系。

function formatter1() {
            var x = new FilteringSelect({
            name: "Account Select",
            //value: "1",
            store: remoteData,
            searchAttr: "name",
            onChange: function () {
                console.log("EI");
            }

        });
        x._destroyOnRemove=true;
        return x;
}

//关系数据网格

var DataRelations = { identifier: "id", items: [] };

storeRelations = new Write({data: DataRelations, clearOnClose: true });

var layoutRelations = [
    {'name': "Words", field: "word", width: 40 },
    {'name': "Account", field: "id", width: 40, formatter: formatter1 }

    //,{'name': "Accounts Available", field: "AccountsAvailable", width: 20, formatter: formatter1}
];

var gridRelations = new DataGrid({
        id: 'gridRelations',
        store: storeRelations,
        structure: layoutRelations,
    rowSelector: '10px'
});

/*append the new grid to the div*/
gridRelations.placeAt("gridDivRelations");

/*Call startup() to render the grid*/
gridRelations.startup();

1 个答案:

答案 0 :(得分:0)

这是一个基于你的代码的工作jsfiddle:

http://jsfiddle.net/LFk8Z/

您需要为网格的DIV容器指定宽度和高度。也许那是最初的问题。您还需要加载网格css资源。您的格式化程序函数没有参数,但您需要指定一个:

function formatter1(x) {
// Format cell value (which is in x) in here.
}