"保存","取消"迁移组件后,按钮在Joomla 3中不起作用

时间:2015-05-14 10:44:25

标签: php sql joomla

我正在将为2.5制作的组件迁移到Joomla 3.4。现在一切正常,除了一件事:Joomla工具栏按钮在后端根本没有反应。有什么不对吗?它与Joomla 2.5配合得很好。

    // Set the toolbar
    $this->addToolBar();

    // Display the template
    parent::display($tpl);
}

/**
 * Setting the toolbar
 */

protected function addToolBar() 
    {
            JFactory::getApplication()->input->set('hidemainmenu', true);
            $isNew = ($this->item->id == 0);

            JToolBarHelper::title($isNew ? JText::_('New note') :   JText::_('Edit note'));
            JToolBarHelper::save('guestbook.save');
            JToolBarHelper::cancel('guestbook.cancel', $isNew ? 'JTOOLBAR_CANCEL' : 'JTOOLBAR_CLOSE');
    }

0 个答案:

没有答案