0

我正在创建 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;
    }
    }`
4

1 回答 1

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();
      });
     });

但我比这更好.. 参考这个 url 在 joomla 3 中获得更好的解决方案如何包括自动完成搜索

于 2013-09-07T06:24:30.743 回答