⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Select field creation and how this field works
  • Code for generating a select
  • Different select a content depending on other fields
  • Strikethrough selects and what it may be caused by
  • Single or multiple select
  • How do I replace the id with a different identifier?
  • How do I take the value of a select?
  • Additional information in the context panel for Select and sections in the drop-down menu
  • Editing a source
  • Table settings basic level
  • Prefilters base level
  • 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
  • How do I take the value of a select?

    selects_table

    If we access the Select field with #, will the value or display be taken?

    Using # retrieves the value. The same happens when using select.

    How do I take a display?

    To get the display immediately, you need to use the prefix s#s.field_name.

    At the moment when such an access is executed, the select is calculated, which heavily loads the server.

    A less loaded way:


    =:
    select(table: 'select_table'; field: 'select_title'; where: 'id' = #select_value)

    How do I take a display using the select function?

    By default, select takes the value. To get the display, you need to use sfield instead of field. This also affects the load.

    Sometimes, we take the display for an individual select that depends on other fields — in this case, you will need to specify the fields it depends on in the tfield parameters.

    Okay, so I took the value of a select, such as the id of an item. How do I get the price of that item now?


    =:
    select(table: 'price'; field: 'unit_price'; where: 'id' = #unit_select_field)