【发布时间】:2015-04-07 09:34:15
【问题描述】:
我已将 Joomla 从 1.5 升级到 3.4。我也升级了 Vodes 支付组件。升级后搜索过滤器选项不适用于管理员。这是我正在使用的代码:
<form action="index.php" method="post" name="adminForm" id="adminForm">
<table width="100%">
<tr>
<td align="right" width="100%">
<?php echo JText::_( 'Filter' ); ?>:
<input type="text" name="search" id="search" value="<?php echo $this->lists['search'];?>" class="text_area" onChange="document.adminForm.submit();" />
<button onclick="this.form.submit();"><?php echo JText::_( 'Go' ); ?></button>
<button onclick="document.getElementById('search').value='';
this.form.getElementById('filter_catid').value='0';
this.form.getElementById('filter_state').value='';
this.form.submit();">
<?php echo JText::_( 'Reset' ); ?></button>
</td>
请帮我找出来。
【问题讨论】: