Extjs with Rails-在面板上动态添加按钮的问题

发布于 2024-11-09 01:11:21 字数 117 浏览 0 评论 0原文

我正在使用 ExtJS 3.2.1 和 Rails 3.x。 我有一个面板,我想根据数据库中的记录数“动态”添加 ExtJS 按钮。我尝试谷歌搜索但没有运气。

有什么建议吗?

提前致谢 !

I am using ExtJS 3.2.1 with Rails 3.x.
I have a Panel on which I want to add ExtJS Buttons "dynamically" depending upon the number of records in the db. I tried googling but no luck.

Any Suggestions?

Thanks in advance !

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

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

发布评论

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

评论(1

↙厌世 2024-11-16 01:11:21

您的问题不清楚您要在哪里添加按钮。您是否将其添加到工具栏或面板的按钮部分中。无论哪种方式,您都应该能够使用可用于 ToolbarPaneladdButton 方法。

panel.addButton({your button config});

现在,要创建按钮,您必须将其包装在循环中。在此之前,您必须从数据库获取必要的数据。为了获取数据,您可以使用 Ext.Ajax 类并根据响应,迭代并创建按钮。

It not clear in your question where you are adding the button. Are you adding it into a toolbar or into buttons section of a panel. Either way, you should be able to use the addButton method available for Toolbar and Panel.

panel.addButton({your button config});

Now, to create buttons you will have to wrap it in a loop. Before that you will have to get the necessary data from DB. For getting data, you can use the Ext.Ajax class and according to the response, iterate and create the buttons.

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