Extjs with Rails-在面板上动态添加按钮的问题
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题不清楚您要在哪里添加按钮。您是否将其添加到工具栏或面板的按钮部分中。无论哪种方式,您都应该能够使用可用于
Toolbar
和Panel
的addButton
方法。现在,要创建按钮,您必须将其包装在循环中。在此之前,您必须从数据库获取必要的数据。为了获取数据,您可以使用 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 forToolbar
andPanel
.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.