0

我有一个带有过滤器插件的增强网格,如下所示:

<!DOCTYPE html>
<html >
<head>


    <style type="text/css">@import "./dojo/resources/dojo.css";
@import "./dojox/grid/enhanced/resources/claro/EnhancedGrid.css";
@import "./dojox/grid/enhanced/resources/EnhancedGrid_rtl.css";

/*Grid need a explicit width/height by default*/
#grid {
    width: 45em;
    height: 20em;
}</style>
<script data-dojo-config="async: true" src='./dojo/dojo.js'></script>
<script data-dojo-config="async: true" src='./dojo/mydojo.js'></script>
<script>
var dojoConfig = {
    baseUrl: "./",
    tlmSiblingOfDojo: false,
    packages: [
        { name: "dojo", location: "dojo" },
        { name: "dijit", location: "dijit" },
        { name: "dojox", location: "dojox" }
    ]
};
require(["dojox/grid/EnhancedGrid","dojo/data/ItemFileWriteStore",
"dojox/grid/enhanced/plugins/Filter"], 
function(EnhancedGrid,ItemFileWriteStore,Filter){
        /*set up data store*/
        var data = {
          identifier: 'id',
          items: []
        };
        var data_list = [
          { col1: "normal", col2: false, 
col3: 'But are not followed by two hexadecimal', col4: 29.91},
          { col1: "important", col2: false,
 col3: 'Because a % sign always indicates', col4: 9.33},
          { col1: "important", col2: false, 
col3: 'Signs can be selectively', col4: 19.34}
        ];
        var rows = 60;
        for(var i=0, l=data_list.length; i<rows; i++){
          data.items.push(dojo.mixin({ id: i+1 }, data_list[i%l]));
        }
        var store = ItemFileWriteStore({data: data});

        /*set up layout*/
        var layout = [[
          {'name': 'Column 1', 'field': 'id'},
          {'name': 'Column 2', 'field': 'col2'},
          {'name': 'Column 3', 'field': 'col3', 'width': '230px'},
          {'name': 'Column 4', 'field': 'col4', 'width': '230px'}
    ]];

        /*create a new grid:*/
        var grid = EnhancedGrid({
            id: 'grid',
            store: store,
            structure: layout,
            rowSelector: '20px',
                plugins: {
                   filter: {
                    closeFilterbarButton: true,
                    ruleCount: 5,
                    itemsName: "songs"
                   }
                }
         },  "gridDiv");

        /*append the new grid to the div*/
       // dojo.byId("gridDiv").appendChild(grid.domNode);

        /*Call startup() to render the grid*/
    grid.startup();
    //alert("ee");
    //grid.placeAt("gridDiv");
});

</script>
</head>
<body class="claro">
<div id="gridDiv"></div>
</body>
</html>

当我调用上述 HTML 时,我看到许多与 Filter 插件相关的 html 文件正在下载,其中包括:

/dojox/grid/enhanced/templates/FilterBar.html
/dojox/grid/enhanced/templates/FilterDefPane.html
/dojox/grid/enhanced/templates/CriteriaBox.html
/dojox/grid/enhanced/templates/FilterBoolValueBox.html

我希望这些文件成为 EnhancedGrid Javascript 的一部分。到目前为止,我找到了以下解决方案:

http://grokbase.com/t/dojo/dojo-interest/11bs5jf64d/custom-build-including-css-and-html-files

但是我无法在上面的链接中了解如何使用 Kallenboone 的代码。

有人可以帮忙吗?

4

1 回答 1

0

查看以下链接,了解如何为 dojo 创建构建:

http://dojotoolkit.org/documentation/tutorials/1.7/build/

于 2013-04-12T09:57:12.170 回答