后端的Joomla 3.0 Component JS错误

时间:2012-10-20 20:08:50

标签: php javascript joomla joomla3.0

我正在开发一个Joomla 3.0组件。作为示例,我从Joomla文档中下载了com_hello组件。

我发生的错误是当我检查视图列表中的复选框时,收到错误消息TypeError: b is null。这个错误发生在core.js的某个地方。

通常在2.5中,如果我使用JHtml::_('grid.id',$i,$item->id);代码并且在我的表单中有<input type="hidden" name="boxchecked" value="0" />字段,那么它可以正常工作。

我还查看了Joomla核心的一些组件,但是我找不到丢失的东西或其他错误。

以下是我的观点default.php的代码:

<?php

// NO DIRECT ACCESS TO THIS FILE
defined('_JEXEC') or die('Restricted access');

JHtml::_('behavior.tooltip');
?>
<form action="<?php echo JRoute::_('index.php?option=com_simplesuite'); ?>" method="post" name="adminForm">
    <table class="adminlist">
        <thead>
            <tr>
                <th>ID</th>
                <th><input type="checkbox" name="checkall-toggle" title="<?php echo JText::_('JGLOBAL_CHECK_ALL'); ?>" value="" onclick="Joomla.checkAll(this);" /></th>
                <th><?php echo JText::_('COM_SIMPLESUITE_TAGCLOUD_ADMINISTRATOR_LIST_NAME'); ?></th>
                <th><?php echo JText::_('COM_SIMPLESUITE_TAGCLOUD_ADMINISTRATOR_LIST_TAGS'); ?></th>
                <th><?php echo JText::_('COM_SIMPLESUITE_TAGCLOUD_ADMINISTRATOR_LIST_ACTIONS'); ?></th>
            </tr>
        </thead>
        <tbody>
            <?php foreach ($this->items as $i => $item) : ?>
            <tr class="row<?php echo $i%2; ?>">
                <td><?php echo $item->id; ?></td>
                <td><?php echo JHtml::_('grid.id',$i,$item->id); ?></td>
                <td><?php echo $item->name; ?></td>
                <td><?php echo ($item->tags) ? $item->tags : JText::_('COM_SIMPLESUITE_TAGCLOUD_ADMINISTRATOR_LIST_EMPTY'); ?></td>
                <td><a href="#">W</a><a href="#">X</a></td>
            </tr>
            <?php endforeach; ?>
        </tbody>
        <tfoot>
            <tr>
                <td colspan="4"><?php echo $this->pagination->getListFooter(); ?></td>
            </tr>
        </tfoot>
    </table>
    <div>
        <input type="hidden" name="task" value="" />
        <input type="hidden" name="boxchecked" value="0" />
        <?php echo JHtml::_('form.token'); ?>
    </div>
</form>

5 个答案:

答案 0 :(得分:6)

对于<form>元素,请确保您还有id="adminForm"。有关详细信息,请参阅http://docs.joomla.org/Potential_backward_compatibility_issues_in_Joomla_3.0_and_Joomla_Platform_12.1#JavaScript

答案 1 :(得分:1)

尝试使用它:

<?php echo JHtml::_('grid.checkall'); ?>

而不是:

<input type="checkbox" name="checkall-toggle" title="<?php echo JText::_('JGLOBAL_CHECK_ALL'); ?>" value="" onclick="Joomla.checkAll(this);" />

这对我有用。

答案 2 :(得分:0)

尝试将其添加到脚本的顶部:

window.addEvent('domready', function () {
    if (typeof jQuery != 'undefined' && typeof MooTools != 'undefined') {

            Element.implement({
                slide:function (how, mode) {
                    return this;
                }
            });
        }
    });

这可能是与开发团队正在解决的政治冲突。

答案 3 :(得分:0)

将id =“adminForm”添加到表单中。我花了一段时间才找到它,遇到了同样的问题。

名称=“adminForm”的表单现在也需要id =“adminForm”。

请参阅:

http://docs.joomla.org/Potential_backward_compatibility_issues_in_Joomla_3_and_Joomla_Platform_12.2#JavaScript

答案 4 :(得分:0)

我添加了以下字段,它对我有用

<input type="hidden" name="boxchecked" value="" />