我有一个问题,我正在安装组件,我想添加组件一个新的字段添加在后端端更多我想在后端添加新字段该字段是下拉列表我要添加和我想在下拉列表中从数据库中获取数据
给我任何建议如何解决我的问题并告诉我在组件中写入dat查询的位置告诉我具体的文件名我有代码并且我在下面添加我的代码
尝试在 C
<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>
告诉我这个问题的线索
我想在下拉列表中获取其他表格数据,并告诉我正确的查询..
答案 0 :(得分: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']; ?>
希望这有助于解决您的问题。