Jump to content

BO : Liste triée sur plusieurs citères


Recommended Posts

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...