⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Adding a prefilter field and linking it to a rows part field
  • How to filter by Select
  • Using manual selects in prefilters
  • Interval prefilters
  • Dates in the prefilter
  • Conditional formatting basic level
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • Action codes advanced level
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • Dates in the prefilter

    prefilters

    What form is the date stored in the prefilter?

    If you choose a field of type Date, then in Y-m-d or in Y-m-d H:i.

    What if the rows part uses the date-time, and you have to choose by date?

    There are several approaches:

    1. Create a technical field in the row part, where through dateFormat transform to Y-m-d.

    2. Do not bind the prefilter field in which the date is selected to the row part, but make two hidden prefilter fields with parameters interval. Bind them to the date-time in the row part, and calculate the value in them with code:

    For the start:

    =: dateFormat(date: #fl_date; format: "Y-m-d 00:00")
    

    For the end:

    =: dateFormat(date: #fl_date; format: "Y-m-d 23:59")
    

    The comparison of the start and end goes by the principle of greater/less or equal — the extreme values are included in the interval.

    Как быть если надо выбирать по месяцу?

    Similarly, through the technical field in the lowercase part or through two interval technical fields of the prefilter:

    For the starting one:

    =: dateFormat(date: #fl_date; format: "Y-m-01")
    
    

    For the ending one:

    =: dateAdd(date: #fl_teh_start; days: $days)
    
    days: dateFormat(date: #fl_teh_start; format: "t") - 1
    
    // Here we find the last day of the month by the first one