在 ext4 设计器中制作远程可配置网格的正确方法是什么?

发布于 2024-12-04 10:26:21 字数 50 浏览 1 评论 0原文

在 ext 设计器中创建网格(通过远程 json 查询获取其列定义)的正确方法是什么?

What is the correct way to make a grid in ext designer, which gets its column definition trough a remote json query?

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

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

发布评论

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

评论(1

埋葬我深情 2024-12-11 10:26:22

我不确定,但我认为这不能在 Ext Designer 中完成。

要在运行时配置网格,您需要在收到带有列定义的 json 后创建它:

var jsonColumns = loadThemFromSomewere();
var grid = Ext.create('Ext.grid.Panel', {
    columns : jsonColumns,
    store : someStore
});

jsonColumns 需要采用与网格所需的形式相同的形式。如果您的服务器无法提供此功能,您必须在客户端重新格式化它们。

I am not sure, but I think this can not be done in the Ext Designer.

To configure your grid on runtime you need to create it after recieving the json with the column definitions:

var jsonColumns = loadThemFromSomewere();
var grid = Ext.create('Ext.grid.Panel', {
    columns : jsonColumns,
    store : someStore
});

The jsonColumns need to be in the same form as required by the grid. If your server can not provide this you have to reformat them on client side.

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