Joomla 自定义管理按钮操作

发布于 2025-01-05 15:51:40 字数 514 浏览 2 评论 0原文

我不知道为什么这不起作用,但我的自定义按钮操作(任务)都没有在我的组件中执行任何操作。在我的 view.html.php 文件中,我有:

JToolBarHelper::custom('reports.export_csv', 'csv', '', 'CSV', false);
JToolBarHelper::custom('reports.export_mailchimp', 'mailchimp', '', 'Mailchimp', false);

然后在我的 ReportsControllerReports 文件中,我有 2 个方法(不仅仅是 2 个,还有其他一些方法,但它们不相关),export_csv() 和 export_mailchimp()。每当我单击按钮时,我都会收到一个 JS 错误,我认为该错误会阻止操作执行这些方法中的代码。关于“b 未定义”的内容。我找不到我的代码和其他 Joomla(核心)组件中使用的代码之间的任何差异,因此如果有人能够阐明这个问题,我们将不胜感激(像往常一样,Joomla 论坛完全没用)。

I have no idea why this doesn't work, but none of my custom button actions (tasks) do anything in my component. In my view.html.php file I have:

JToolBarHelper::custom('reports.export_csv', 'csv', '', 'CSV', false);
JToolBarHelper::custom('reports.export_mailchimp', 'mailchimp', '', 'Mailchimp', false);

Then in my ReportsControllerReports file I have 2 methods (not just 2, there are some others but they aren't relevant), export_csv() and export_mailchimp(). Whenever I click the buttons I get a JS error which I assume is preventing the action from executing the code in those methods. Something about "b is undefined". I cannot find any differences between my code and that used in other Joomla (core) components, so if anyone could shed some light on this issue it would be greatly appreciated (as usual, the Joomla forums are totally useless).

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

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

发布评论

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

评论(2

总以为 2025-01-12 15:51:40

@Cfyzz 解决方案有效。

我添加了这个来查看文件:

<script type="text/javascript">

    Joomla.submitbutton = function(pressbutton) {
        switch(pressbutton) {
            case 'google':

                window.location = '<?=JRoute::_( 'http://google.com', false );?>';

            break;
            case 'stackoverflow':

                window.location = '<?=JRoute::_( 'http://stackoverflow.com', false );?>';

            break;
        }

    }
</script>

并且在 view.html.php 中添加了这个,

JToolBarHelper::cancel('stackoverflow', 'Go Overflow');
JToolBarHelper::custom('google', 'checkin', '', 'Go Google', false);

显然在这种情况下你不必使用“JRoute::_(”。我用 2 个示例替换了内部链接,这样更容易理解。

@Cfyzz solution works.

I added this to view file:

<script type="text/javascript">

    Joomla.submitbutton = function(pressbutton) {
        switch(pressbutton) {
            case 'google':

                window.location = '<?=JRoute::_( 'http://google.com', false );?>';

            break;
            case 'stackoverflow':

                window.location = '<?=JRoute::_( 'http://stackoverflow.com', false );?>';

            break;
        }

    }
</script>

and this in view.html.php

JToolBarHelper::cancel('stackoverflow', 'Go Overflow');
JToolBarHelper::custom('google', 'checkin', '', 'Go Google', false);

Obviously you dont have to use "JRoute::_(" in this situation. I replaced inner links with 2 samples so it`s easier to understand.

只为一人 2025-01-12 15:51:40

您应该覆盖 Joomla 的 JS 框架行为
您应该在自定义 JS 文件中使用该函数:
Joomla.submitbutton = function(pressbutton) {
开关(按钮){
案例“export_cvs”:
URL = JURI::base.'index.php?option=yourController&task=export_cvs&....
$.ajax({
网址:网址,
类型:帖子等
});
}
}

在我的组件中一切正常并且工作正常

You should override the Joomla's JS framework behavour
You should use the function in your custom JS file:
Joomla.submitbutton = function(pressbutton) {
switch(pressbutton) {
case 'export_cvs':
URL = JURI::base.'index.php?option=yourController&task=export_cvs&....
$.ajax({
url: URL,
type: post, etc
});
}
}

In my component everytrhing is ok and working properly

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