0

我有一个问题,我正在安装组件,我想在后端添加一个新字段,我想在后端添加一个新字段,该字段是我想添加的下拉列表,我想添加在下拉列表中从数据库中获取数据

给我任何建议以解决我的问题,你告诉我在哪里写组件中的 dat 查询告诉我特定的文件名我有代码,我添加我的代码如下

试图在第84行的C:\wamp\www\Joomla\administrator\components\com_home_service\views\serviceitem\tmpl\edit.php中获取非对象的属性

<form action="<?php echo JRoute::_('index.php?option=com_home_service&layout=edit&id=' . (int) $this->item->id); ?>" method="post" enctype="multipart/form-data" name="adminForm" id="serviceitem-form" class="form-validate">
    <div class="width-60 fltlft">
        <fieldset class="adminform">
            <legend><?php echo JText::_('COM_HOME_SERVICE_LEGEND_SERVICEITEM'); ?></legend>
            <ul class="adminformlist">

                                <li><?php echo $this->form->getLabel('id'); ?>
                <?php echo $this->form->getInput('id'); ?></li>
                <li><?php echo $this->form->getLabel('image'); ?>
                <?php echo $this->form->getInput('image'); ?></li>
                <li><?php echo $this->form->getLabel('image_name'); ?>
                <?php echo $this->form->getInput('image_name'); ?></li>
                <?php
                    //defined('_JEXEC') or die('Restricted access');
                    $db = JFactory::getDBO();
                    $query=$db->getQuery (true);
                    $query->SELECT ('*');
                    $query->from('#__content');
                    $db->setQuery( $query);
                    $results = $db->loadObjectList();?>
                     <li><?php echo $this->form->getLabel('image_name'); ?>
                    <select>
                            <option value="<?php echo $result->id; ?>">1</option>

                       </select></li>

            </ul>
        </fieldset>
    </div>

给我这个问题的线索

我想在下拉列表中获取其他表数据,并告诉我正确的查询..

4

1 回答 1

1

您可以在返回数据的表的模型文件中定义函数,并将该返回值包含在下拉列表中

In controller:
      $model2 = & $this->getModel('modelname');
      $view->setModel($model2, false);
In view.html.php  
      $model2 = & $this->getModel('modelname');
      $droplist = $model2->functioname();
      $lists ['dropdown'] = JHTML::_('select.genericList', $droplist , 'fieldname', 'class="inputbox validate-notzero"', 'value', 'text');
In default.php
      <?php echo $lists ['dropdown']; ?>

希望这将有助于解决您的问题。

于 2013-05-01T10:17:26.617 回答