Joomla 1.7自定义工具栏按钮使用
我使用以下代码在组件的后端工具栏中添加了一个自定义按钮:
JToolBarHelper::custom('libri.details','details.png','details.png','TOOLBAR_DETAILS',true);
此按钮需要管理员检查表中列出的条目之一。 如果您不明白我在说什么,您可以在此处查看屏幕截图关于 该按钮名为“Dettagli”(目前没有图像)。
我遇到了一些问题:
- 如何将选中条目的 id 附加到按钮生成的地址?
- 我已将详细信息()方法放入控制器中,它调用模型的实例及其内部的方法。模型的方法将查询结果返回给控制器。我该如何告诉控制器将该结果传递给名为 libro 的视图?
I've added a custom button into my component's backend toolbar with this code:
JToolBarHelper::custom('libri.details','details.png','details.png','TOOLBAR_DETAILS',true);
This button needs that the admin checks one of the entries listed in the table.
You can see a screenshot here if you haven't understood what I'm talking about
The button is the one called "Dettagli" (no image at the moment).
I'm having some problems:
- How do I append the checked entry's id to the address generated from the button?
- I've put a details() method into the controller, it calls an instance of the model and a method inside it. The model's method returns to the controller the result of a query. How do I say to the controller to pass that result to a view called libro?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
libri
)。在控制器中,您可以使用JRequest::getVar('varNameHere');
来检索它。$this->setRedirect($urlOfView, $someStatusMessage)
libri
). In your controller, you can useJRequest::getVar('varNameHere');
to retrieve it.$this->setRedirect($urlOfView, $someStatusMessage)