簡単なクエリがあります
<button type="button" onclick="Joomla.submitbutton('propform.apply')">
<?php echo JText::_('JAPPLY') ?>
適用機能の後にこれを新しいタブにリダイレクトしたい - これを達成する簡単な方法はありますか: (ある種のオンクリック - 適用機能の後のリダイレクト機能)? 前もって感謝します スティーブ
JControllerForm を拡張するコントローラーを使用している場合は、save 関数をオーバーライドすることでこれを実現できます。
public function save($key = null, $urlVar = null)
{
parent::save($key, $urlVar);
$task = $this->getTask();
if($task == 'apply') {
$this->setRedirect(
JRoute::_('index.php?option=com_mycomponent&view=anothertab', false)
);
}
}