Jump to content

Edit History

herwaldi

herwaldi


wrong code

Hello everyone,

How to select an active option in my module?

checked options dont work :(

 

        return array(
            'form' => array(
                'legend' => array(
                    'title' => $this->l('Choose products'),
                    'icon' => 'icon-th-large',
                ),
                'input' => array(
                    array(
                        'type' => 'select',
                        'label' => $this->l('Products available with a gift'),
                        'name' => 'selectProductsField',
                        'class' => 'selectProducts',
                        'required' => false,
                        'col' => 5,
                        'multiple' => true,
                        'options' => array(
                            'query' => ProductGiftProduct::getProducts(true),
                            'id' => 'id_product',
                            'name' => 'name',
                            'checked' => 597,
                        )
                    ),
                ),
                'submit' => array(
                    'title' => $this->l('Save'),
                ),
            ),
        );

 

herwaldi

herwaldi

Hello everyone,

How to select an active option in my module?

checked options dont work :(

 

        return array(
            'form' => array(
                'legend' => array(
                    'title' => $this->l('Choose products'),
                    'icon' => 'icon-th-large',
                ),
                'input' => array(
                    array(
                        'type' => 'select',
                        'label' => $this->l('Products available with a gift'),
                        'name' => 'selectProductsField',
                        'class' => 'selectProducts',
                        'required' => false,
                        'col' => 5,
                        'multiple' => true,
                        'options' => array(
                            'query' => ProductGiftProduct::getProducts(true), // el true es que solo los que estan activos
                            'id' => 'id_product',
                            'name' => 'name',
                            'checked' => 597,
                        )
                    ),
                ),
                'submit' => array(
                    'title' => $this->l('Save'),
                ),
            ),
        );

 

×
×
  • Create New...