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

Add List Box (On Click) in Joomla 3.x

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

谁能给我建议解决方案?

为您的 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);
?>