我正在创建joomla 3自定义组件,使用自定义字段类型(mycomponent / models / fields / productcategory.php)创建产品类别列表框。它还以正确的方式显示产品保护。
但我需要在模块管理器中显示带有搜索选项的产品类别选择列表框,如位置字段。我在下面加入了我的编码
`class JFormFieldProductCat extends JFormFieldList
{
/**
* The form field type.
*
* @var string
* @since 1.6
*/
protected $type = 'ProductCat';
/**
* Method to get the field options.
*
* @return array The field option objects.
* @since 1.6
*/
public function getOptions()
{
// Initialize variables.
$options = array();
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select('id, productcat');
$query->from('#__productcats AS a');
$query->order('a.productcat');
$query->where('published = 1');
// Get the options.
$db->setQuery($query);
$options = array();
$options[] = JHTML::_('select.option', '0', 'Select Category Name');
$result = $db->loadObjectList();
foreach($result as $row)
{
$options[] = JHTML::_('select.option', $row->id, $row->productcat);
}
// Check for a database error.
if ($db->getErrorNum()) {
JError::raiseWarning(500, $db->getErrorMsg());
}
return $options;
}
}`
答案 0 :(得分:0)
我找到了带有搜索选项
的选择列表框的灵魂这里链接(http://jqueryui.com/autocomplete/#combobox)我找到了选择框搜索的解决方案,这里是编码。
jQuery(document).ready(function($) {
$( "#jform_fk_productcat" ).combobox();
$( "#toggle" ).click(function() {
$( "#jform_fk_productcat" ).toggle();
});
});
jQuery(document).ready(function($) {
$( "#jform_fk_product_code" ).combobox();
$( "#toggle" ).click(function() {
$( "#jform_fk_product_code" ).toggle();
});
});
但我比这更好解决..请参考此网址以获得更好的解决方案 in joomla 3 how to include auto complete search