在Joomla 3.x中添加列表框(单击)

时间:2016-03-30 01:42:12

标签: joomla styles box

我想在Joomla 3.x中创建一个列表框,如下所示,但我不知道我应该做什么或类似的。

enter image description here

谁可以向我建议解决方案?

1 个答案:

答案 0 :(得分:0)

复制并粘贴以下php文件代码

JHtml::_('formbehavior.chosen');

创建一个列表框

 <?php
$options = array();
$options[] = JHTML::_('select.option', '', '- please select -');
$options[] = JHTML::_('select.option', 'Office spaces', 'Office spaces');
$options[] = JHTML::_('select.option', 'Residents', 'Residents');

echo JHTMLSelect::genericlist($options, 'category', 'class="selectbox"', 'value', 'text', $row->category);
?>