Free cookie consent management tool by TermsFeed Disable Automatic Refresh After User Saves Into a Variable
Disable Automatic Refresh After User Saves Into a Variable

This scenario demonstrates:

  • How to disable the automatic recalculation of a variable's default value once a user has edited that variable directly.

Expression

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
a!localVariables(
  local!startDate: today(),
  local!endDateEdited: false,
  local!endDate: a!refreshVariable(
    value: local!startDate + 7,
    refreshOnReferencedVarChange: not(local!endDateEdited)
  ),
  {
    a!dateField(
      label: "Start Date",
      value: local!startDate,
      saveInto: local!startDate
    ),
    a!dateField(
      label: "End Date",
      value: local!endDate,
      saveInto: {
        local!endDate,
        a!save(local!endDateEdited, true)
      }
    )
  }
)

Test it out

  1. Select a new value for Start Date. Notice that local!endDate is updated based on the new value for local!startDate.
  2. Select a value for End Date
  3. Select a new value for Start Date. Notice that local!endDate retains the user's input and does not automatically update.
Open in Github Built: Fri, Mar 22, 2024 (05:03:43 PM)

Disable Automatic Refresh After User Saves Into a Variable

FEEDBACK