dojo datagrid,如何进行单元格选择,而不是行选择?

发布于 2024-11-25 09:15:05 字数 163 浏览 0 评论 0原文

我在互联网上的很多地方进行了搜索,但到目前为止我无法找到在 dojo 数据网格上进行“单元格”选择的正确方法。

如果有人知道如何进行单元格选择而不是行选择,那么这对我会有帮助。

这是dojo datagrid的基本要求之一,但到目前为止,我无法找到答案。

请帮我。

I have searched in many places in internet, but so far I cant able to find a right way to do "cell" selection on dojo datagrid.

If anybody know how to do cell selection instead of row selection than it will be helpful for me.

It is a one of the basic requirement in dojo datagrid, but so far, I can't able to find out.

Please help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撑一把青伞 2024-12-02 09:15:05

虽然DataGrid不支持这一点,但您可以尝试dojox.grid.EnhancedGrid。 dojo1.6中有一个Selector插件,支持单元格选择。

使用方法如下:

dojo.require('dojox.grid.EnhancedGrid');
dojo.require('dojox.grid.enhanced.plugins.Selector');

//......prepare the store, structure, etc.

dojo.ready(function(){
    var grid = new dojox.grid.EnhancedGrid({
        store: myStore,
        structure: myLayout,
        rowSelector: "20px",//This is used to select row.
        plugins: {
            selector: {
                //row: false    //If you'd like to disable row selection, just add this.
            }
        }
    });
    grid.placeAt('aDomNode');
    grid.startup();
});

有一个 dojo 校园文档介绍了这个插件。

although DataGrid does not support this, you can try dojox.grid.EnhancedGrid. There's a Selector plugin available in dojo1.6, which supports cell selection.

Here's how to use it:

dojo.require('dojox.grid.EnhancedGrid');
dojo.require('dojox.grid.enhanced.plugins.Selector');

//......prepare the store, structure, etc.

dojo.ready(function(){
    var grid = new dojox.grid.EnhancedGrid({
        store: myStore,
        structure: myLayout,
        rowSelector: "20px",//This is used to select row.
        plugins: {
            selector: {
                //row: false    //If you'd like to disable row selection, just add this.
            }
        }
    });
    grid.placeAt('aDomNode');
    grid.startup();
});

There's a dojo campus document covering this plugin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文