Community pioneers
Wanted to contribute with ideas?, want to expand the use of pandora or to help us improving it?. This... View more
numaric sort for monitor detail page
-
numaric sort for monitor detail page
hi,
I think ascending and descending sort in data column in “Monitor Details” should be numaric sort.because most of the time we received numeric values as data and numeric sort has greater importance than string sort in this case.so i changed few lines in code to get that and it is working fine i guess.
551c551,552 <Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â $order = array('field' => 'tagente_estado.datos', 'order' => 'ASC'); --- >Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â // $order = array('field' => 'tagente_estado.datos', 'order' => 'ASC'); >Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â $order = array('field' => 'CAST(tagente_estado.datos AS DECIMAL(12,2))', 'order' => 'ASC'); 555c556,557 <Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â $order = array('field' => 'tagente_estado.datos', 'order' => 'DESC'); --- >Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â // $order = array('field' => 'tagente_estado.datos', 'order' => 'DESC'); >Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â $order = array('field' => 'CAST(tagente_estado.datos AS DECIMAL(12,2))', 'order' => 'DESC');
Regards
Sorry, there were no replies found.