jherbaux Posted October 20, 2010 Share Posted October 20, 2010 Hello,Je suis dans la création d'un module. je suis sur une page de mon module qui liste les entrées qui sont présentes dans ma bdd.J'ai : ID / Nom / nb_optionID et Nom sont dans ma bdd, donc pas de soucis par contre nb_option ne s'y trouve pas. J'ai donc le fieldsDisplay suivant : $this->fieldsDisplay = array( 'id_menu' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25, 'orderby' => true, 'search' => false), 'name' => array('title' => $this->l('Nom'), 'width' => 300, 'orderby' => true, 'search' => true), 'nb_options' => array('title' => $this->l('Nombre d\'options associées'), 'callback' => 'getNbOptions', 'width' => 100, 'orderby' => true, 'search' => true), ); Je demande a nb_options d'aller chercher ma fonction getNbOptions.voici ma fonction : public function getNbOptions($id_menu) { return 'toto'; } Mais rien n'y fait... La question : J'ai oublié quoi?? ^^Merci Link to comment Share on other sites More sharing options...
jherbaux Posted October 20, 2010 Author Share Posted October 20, 2010 $this->_select = 'a.`id_menu` as nb_options'; a réglé le pb Link to comment Share on other sites More sharing options...
forsaken122 Posted April 7, 2011 Share Posted April 7, 2011 Est-ce que tu me peux donner ton code? Parceque je dois faire un module pour afficher ma tableau ....Merci, pardon moi pour mon francais... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now