排序Dojo存储物品



所以,我有一个dojo脚本,其中我将4行推入数据网格。这样的东西,

var data = {
            identifier: "id",
            items: []
            };
var data_list = [
        { col1: "normal", col2: false, col3: 'Cut are not followed by two hexadecimal', col4: 29.91},
        { col1: "important", col2: false, col3: 'Decause a % sign always indicates', col4: 9.33},
        { col1: "important", col2: false, col3: 'Aigns can be selectively', col4: 19.34},
        { col1: "normal", col2: false, col3: 'Begin the action', col4: 5.6}
        ];
var rows = 4;
for(var i = 0, l = data_list.length; i < rows; i++)
{
    data.items.push(lang.mixin({ id: i+1 }, data_list[i%l]));
}
var store = new ItemFileWriteStore({data: data});
/*set up layout*/
var layout = [[
        {name: 'Column 1', field: 'id', width: '100px'},
        {name: 'Column 2', field: 'col2', width: '100px'},
        {name: 'Column 3', field: 'col3', width: '200px'},
        {name: 'Column 4', field: 'col4', width: '150px'}
        ]];
/*create a new grid*/
var grid = new DataGrid({
            id: 'grid',
            store: store,
            structure: layout,
            rowSelector: '20px'});

然后,我有一个功能,可以使用

dojo.forEach(grid.store._arrayOfAllItems, function (item) {
//do something
}

但是在调用foreach循环之前,我需要对 col3

进行分类

现在,要根据 col3 对项目进行排序,我已经尝试了

            var noOfItems = store._arrayOfAllItems.length;
            var items = new Array(noOfItems);
            for(i = 0; i < noOfItems; i++)
            {
                items[i] = grid.getItem(i);
            }
            for(i = 0; i < noOfItems; i++)
            {
                for(j = 0; j < noOfItems - 1; j++)
                {
                    var a = store.getValue(items[j], "col3");
                    var b = store.getValue(items[j+1], "col3");
                    if(a.localeCompare(b) == 1)
                    {
                        [items[j], items[j+1]] = [items[j+1], items[j]];
                    }
                }
            }
            grid.setItems(items);

但是,即使那样,

 for(i = 0; i < grid.store._arrayOfAllItems.length; i++)
 {
    var items = grid.store._arrayOfAllItems;
    document.write(grid.store.getValue(items[i], "col3")+"<br>");
 }

打印未分类的物品布置。我也尝试使用

grid.store.fetch({onComplete: displaySortItems , sort: [{attribute: "col3"}] });

但事实证明fetch()不会返回任何fetch()常见问题,即使我尝试在 displaySortItems()中对项目进行排序时,它并没有超出函数范围。p>因此,有什么方法可以在使用grid.store._arrayOfAllItems时获得项目的分类数组(基于 col3 )。

我可以对项目数组进行排序,并在使用grid.store._arrayOfAllItems时进行更改。请帮助!

您需要编写回调函数才能使用fetch()。ItemFilerEadstore的文档提供了自定义排序的示例。至少您需要一个oncomplete和onerror的功能。

var gotItems = function(items, request) {
    // Process your items here
    for(i = 0; i < items.length; i++) {
    console.log(items[i]);
    }
};
var fetchFailed = function(error, request) {
    alert("Fetch failed");
};
var sortAttributes = [{attribute: "col3", descending: false}];
store.fetch({query: {}, onComplete: gotItems, onError: fetchFailed, sort: sortAttributes});

update fetch()当它交付项目而不是内部时。如果要再次排序,则可以再次致电fetch(),为onComplete提供另一个功能。

在以'_'开头的Dojo属性中(如_arrayofallitems)被视为"私有"。您仍然可以访问它们,但是修改它们不是一个好主意。ItemFileWritestore将在内部进行管理。如果您想要一个排序的数组,则可以在将您传递给fetch()的函数中构建自己的副本。

您可以在初始化网格时声明排序顺序。

var grid = new Grid({
    sortInitialOrder: [{colId: "Genre", descending: true},{colId: "Artist", descending: true}]
});

相关内容

  • 没有找到相关文章

最新更新