Search the Community
Showing results for tags 'displayform'.
-
make query inside helper class and show options
prestashop_newuser posted a topic in Core developers
Hi, I am doing a small module in prestashop. In that module I want to show all the product category in the checkbox type. Lets say in the default prestashop installation(1.6) we have 3 main categories ( 1. Casual Dresses 2. Evening Dresses 3. Summer Dresses ) Now I want them in a tree manner with the checkboxes in a module backend( inside function renderForm() ). So can someone kindly tell me how to do this? How to make the query in side the renderFor(helper class) and show them as a checkbox? Any help and suggestions will be really appreciable. Thanks.- 1 reply
-
- helperclass
- renderform
-
(and 2 more)
Tagged with:
-
Bonjour ; Est ce Prestashop 1.5 supporte nativement le HTML5 (les éléments : spinner , video, data-... ) ? En fait; je me suis confronté à un problème avec l'élément HTML5 spinner (input type="number") dans la fonction displayForm; sauf erreur de ma part, l'élément n'est pas pris en compte dans le rendu de la page. public function displayForm() { ... // Init Fields form array $fields_form[0]['form'] = array( 'legend' => array( 'title' => $this->l('Settings'), ), 'input' => array( array( 'label' => $this->l('Number of news to display'), 'type' => 'number', // 'type' => 'text' 'name' => 'newsNbr', //'size' => 20, 'min' => 1, 'required' => true ) ), 'submit' => array( 'title' => $this->l('Save'), 'class' => 'button' ) ); $helper = new HelperForm(); ... // Load current value $helper->fields_value['newsNbr'] = Configuration::get('BLOCK_NEWS_NBR'); return $helper->generateForm($fields_form); } Je préfère passer par les méthodes de Prestashop pour la création d'un form que de créer un tpl à part puis faire l'appel. merci pour votre réactivité.