Changes for page RealtimeLivetable

Last modified by Vincent Massol on 2024/02/26 17:54

From version 48.1
edited by Clément Desableau
on 2020/05/13 12:18
Change comment: There is no comment for this version
To version 48.2
edited by Clément Desableau
on 2020/05/13 13:04
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -527,16 +527,16 @@
527 527  
528 528  === Filtering system ===
529 529  
530 -Filtering a string is not the same that filtering a number, a date, or a list of values. Thus, we should not provide the same actions for each filter, it should adapt on the column type.
530 +Filtering a string is not the same that filtering a number, a date, or a list of values. Thus, we should not provide the same actions for all type of filters, but adapt according to the filter type.
531 531  
532 -When adding a filter on a column, the program will do 2 things:
532 +When adding a filter on a column, the program has to do 2 things:
533 533  
534 -* create the select with the operators corresponding to the column type
535 -* create the input along with its associated picker, corresponding to the column type (and the selected operator if needed)
534 +* create the operator select, corresponding to the column type
535 +* create the input along with its picker, corresponding to the column type, and the selected operator if needed
536 536  
537 537  There can be different pickers for a same property type. For instance, a "Number" type can be associated to the default number input, or to a custom rating select showing stars. Even if the rating select displays stars to the user, it will return a integer (between 1 and 5) at the end.
538 538  
539 -The operators system is not aware of the picker used to help the user fill the values.
539 +The operators system should not be aware of the picker used to help the user fill the values.
540 540  
541 541  The operators select contains the following for each type:
542 542  
... ... @@ -554,7 +554,7 @@
554 554  ** "≠" / "Is not"
555 555  ** "≤" / "Before"
556 556  ** "≥" / "After"
557 -** between: same purpose than Number
557 +** between: same feature as Number
558 558  * List (unique values)
559 559  ** "=" / "Is"
560 560  ** "≠" / "Is not"

Get Connected