thedoc Posted October 10, 2017 Share Posted October 10, 2017 Bonjour J'ai créé un module et je souhaiterai pouvoir triée ma table suivant plusieurs critères. Je pensais utiliser le _defaultOrderBy mais j'ai l'impression que celui-ci n'admet qu'un seul critere. Bout de code : $this->fields_list = array( 'id_supervision' => array( 'title' => 'Id',// column name //'align' => 'center', 'width' => 30),// column width 'categorie' => array( 'title' => 'categorie', 'type' => 'select', 'list' => $categorie_array, 'filter_key' => 'categorie', 'filter_type' => 'string', 'width' => 150), 'sous_categorie' => array( 'title' => 'sous_categorie', 'type' => 'select', 'list' => $sous_categorie_array, 'filter_key' => 'sous_categorie', 'filter_type' => 'string', 'width' => 150),); Je voudrais trier par categorie puis sous_categorie donc un truc du genre 'order by categorie,sous_categorie'.Avez-vous une idée de comment je dois faire ? 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