Data
48 posts tagged with "Data"
.profile
The .profile action a default display of a user profile. It belongs to the profile category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
.profile
add
The add action Adds a number to an existing value. It belongs to the math category within the data area.
Action Syntax
add 123
add $variable
Valid sizes
Examples
// Basic Usage
add 22
// Using Variables
// Display dynamic content from variables
add $number
add-days
The add-days action adds days to a given date. It belongs to the datetime category within the data area.
Action Syntax
add-days 123 to $variable
add-days $variable to $variable
add-days 123 to YYYY-MM-DD
add-days $variable to YYYY-MM-DD
Return Value
This function returns a
add-row
The add-row action adds a row to a table. It belongs to the row category within the data area.
Action Syntax
add-row $variable to $variable
Return Value
This function returns a
$result = add-row
Valid sizes
Examples
// Basic Usage
$grp_item = add-row $r to $t
add-weeks
The add-weeks action adds weeks to a given date. It belongs to the datetime category within the data area.
Action Syntax
add-weeks 123 to $variable
add-weeks $variable to $variable
add-weeks 123 to YYYY-MM-DD
add-weeks $variable to YYYY-MM-DD
Return Value
This function returns a
app-data
The app-data action stub action for all server app data ACTIONS. It belongs to the data category within the data area.
Action Syntax
app-data $variable
Return Value
This function returns a
$result = app-data
Valid sizes
Examples
// Basic Usage
$response = app-data $varname
average
The average action Calculates the average (mean) of a set of numbers in an array. It belongs to the math category within the undefined area.
Action Syntax
average $variable
Return Value
This function returns a
$result = average
Tags
round=2
Examples
// Basic Usage
average $array
calculate
The calculate action performs a calculation. It belongs to the math category within the data area.
Action Syntax
calculate EXPR
Return Value
This function returns a
$result = calculate
Valid sizes
Examples
// Basic Usage
$number = calculate (expr)
clear-profile
The clear-profile action Removes all saved user profile information from your app. It belongs to the profile category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
clear-profile
csv
The csv action defines a block of static csv data. It belongs to the data category within the data area.
Action Syntax
csv
This action takes no parameters and is used as a bare command.
Examples
// Basic Usage
csv
day-names
The day-names action gets localized day names. It belongs to the datetime category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = day-names
Valid sizes
Examples
// Basic Usage
$dn = day-names
days-between
The days-between action calculate the number of days between two dates. It belongs to the datetime category within the data area.
Action Syntax
days-between $variable and $variable
days-between $variable and YYYY-MM-DD
days-between YYYY-MM-DD and $variable
days-between YYYY-MM-DD and YYYY-MM-DD
Return Value
This function returns a
days-until
The days-until action calculate the days until specified or current date. It belongs to the datetime category within the data area.
Action Syntax
days-until today
days-until YYYY-MM-DD
days-until $variable
Return Value
This function returns a
$result = days-until
Valid sizes
Examples
// Basic Usage
$number = days-until today
decrement
The decrement action decrmeents a number variable. It belongs to the math category within the data area.
Action Syntax
decrement $variable
Valid sizes
Examples
// Basic Usage
decrement $varname
delete-app-data
The delete-app-data action delete app data (private). It belongs to the data category within the data area.
Action Syntax
delete-app-data $variable
Return Value
This function returns a
$result = delete-app-data
Valid sizes
Examples
// Basic Usage
$response = delete-app-data $varname
delete-column
The delete-column action deletes a column from a table. It belongs to the column category within the data area.
Action Syntax
delete-column "text" from $variable
Return Value
This function returns a
$result = delete-column
Valid sizes
Examples
// Basic Usage
$group = delete-column "name" from $groupvar
delete-public-app-data
The delete-public-app-data action delete app data (public). It belongs to the data category within the data area.
Action Syntax
delete-public-app-data $variable
Return Value
This function returns a
$result = delete-public-app-data
Valid sizes
Examples
// Basic Usage
$response = delete-public-app-data $varname
delete-row
The delete-row action deletes a row from a table. It belongs to the row category within the data area.
Action Syntax
delete-row 123 from $variable
delete-row $variable from $variable
Return Value
This function returns a
divide
The divide action divide. It belongs to the math category within the data area.
Action Syntax
divide $variable by $variable
divide $variable by 123
Return Value
This function returns a
filter-group
The filter-group action filters a group. It belongs to the group category within the data area.
Action Syntax
filter-group $variable starts-with "text"
filter-group $variable starts-with $variable
filter-group $variable contains "text"
filter-group $variable contains $variable
Return Value
This function returns a
first-row
The first-row action Gets the first row of a table or group. It belongs to the row category within the data area.
Action Syntax
first-row of $variable
first-row $variable
Return Value
This function returns a
$result = first-row
Valid sizes
Examples
// Basic Usage
$item = first-row of $Ggroup
Related Actions
- `` -
get-item-number
The get-item-number action gets specific item number from a group. It belongs to the group category within the data area.
Action Syntax
get-item-number 123 from $variable
get-item-number $variable from $variable
Valid sizes
Examples
// Basic Usage
$any = get-item-number 3 from $Ggroup
get-row
The get-row action Gets a specific row by its position number from a table. It belongs to the row category within the data area.
Action Syntax
get-row $variable of $variable
get-row 123 of $variable
Return Value
This function returns a
increment
The increment action increment - hidden for $var++. It belongs to the math category within the data area.
Action Syntax
increment $variable
Return Value
This function returns a
$result = increment
Examples
// Basic Usage
$number = increment $numv
last-row
The last-row action Gets the last row of a table or group. It belongs to the row category within the data area.
Action Syntax
last-row of $variable
last-row $variable
Return Value
This function returns a
$result = last-row
Valid sizes
Examples
// Basic Usage
$item = last-row of $Ggroup
Related Actions
- `` -
list-app-data
The list-app-data action list app data (private). It belongs to the data category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = list-app-data
Valid sizes
Examples
// Basic Usage
list-app-data
list-public-app-data
The list-public-app-data action list app data (public). It belongs to the data category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = list-public-app-data
Valid sizes
Examples
// Basic Usage
list-public-app-data
load-app-data
The load-app-data action loads app data (private). It belongs to the data category within the data area.
Action Syntax
load-app-data $variable
Return Value
This function returns a
$result = load-app-data
Valid sizes
Examples
// Basic Usage
$varrec = load-app-data $varname
load-public-app-data
The load-public-app-data action loads app data (public). It belongs to the data category within the data area.
Action Syntax
load-public-app-data $variable
Return Value
This function returns a
$result = load-public-app-data
Valid sizes
Examples
// Basic Usage
$varrec = load-public-app-data $varname
max
The max action Finds the maximum value from a set of numbers in an array. It belongs to the math category within the data area.
Action Syntax
max $variable
Return Value
This function returns a
$result = max
Examples
// Basic Usage
max $array
modulo
The modulo action calculate the modulo (remainder) of a division. It belongs to the math category within the data area.
Action Syntax
modulo $variable by $variable
modulo $variable by 123
Return Value
This function returns a
month-names
The month-names action gets the localized month names. It belongs to the datetime category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = month-names
Valid sizes
Examples
// Basic Usage
$mn = month-names
multiply
The multiply action multiply value. It belongs to the math category within the data area.
Action Syntax
multiply $variable by $variable
multiply $variable by 123
Return Value
This function returns a
new-profile
The new-profile action Creates a fresh profile with default values, replacing any existing data. It belongs to the profile category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
new-profile
profile
The profile action defines an app user’s profile record data. It belongs to the profile category within the data area.
Action Syntax
profile $variable "text"
profile $variable "text" "text"
profile $variable "text" 123
profile $variable "text" true|false
profile $variable "text" $variable
profile $variable "text" YYYY-MM-DD
profile $variable "text" +imagetag
profile $variable "text" #color
Valid sizes
Tags
email
email value
random-row
The random-row action gets a random row from a table of data. It belongs to the row category within the data area.
Action Syntax
random-row of $variable
Return Value
This function returns a
$result = random-row
Valid sizes
Examples
// Basic Usage
$item = random-row of $table
restore-profile
The restore-profile action Loads your saved profile data or creates a new one if needed. It belongs to the profile category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
restore-profile
round
The round action rounds a number to a specified number of decimals. It belongs to the math category within the data area.
Action Syntax
round $variable
Return Value
This function returns a
$result = round
Valid sizes
Tags
digits
number of decimals to round to
Examples
// Basic Usage
$number = round $var
round-down
The round-down action rounds a number down to nearest integer. It belongs to the math category within the data area.
Action Syntax
round-down $variable
round-down 123
Return Value
This function returns a
$result = round-down
Valid sizes
Examples
// Basic Usage
$number = round-down $number
round-up
The round-up action rounds a number up to nearest integer. It belongs to the math category within the data area.
Action Syntax
round-up $variable
round-up 123
Return Value
This function returns a
$result = round-up
Valid sizes
Examples
// Basic Usage
$number = round-up $number
save-app-data
The save-app-data action saves app data (private). It belongs to the data category within the data area.
Action Syntax
save-app-data $variable
save-app-data $variable as $variable
Return Value
This function returns a
$result = save-app-data
Valid sizes
Examples
// Basic Usage
$response = save-app-data $varname
save-public-app-data
The save-public-app-data action saves app data (public). It belongs to the data category within the data area.
Action Syntax
save-public-app-data $variable
save-public-app-data $variable as $variable
Return Value
This function returns a
$result = save-public-app-data
Valid sizes
Examples
// Basic Usage
$response = save-public-app-data $varname
sort-column
The sort-column action sorts a column of data. It belongs to the column category within the data area.
Action Syntax
sort-column $variable
Return Value
This function returns a
$result = sort-column
Valid sizes
Examples
// Basic Usage
$group = sort-column $coldata
sort-group
The sort-group action sorts a group. It belongs to the group category within the data area.
Action Syntax
sort-group $variable
Return Value
This function returns a
$result = sort-group
Valid sizes
Tags
reverse
sort the group in reverse
Examples
// Basic Usage
$group = sort-group $Ggroup
store-profile
The store-profile action Saves your current profile data to device for future use. It belongs to the profile category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
store-profile
subtract
The subtract action subtracts a number from another number. It belongs to the math category within the data area.
Action Syntax
subtract subtract
subtract 123 from $variable
subtract $variable from $variable
Return Value
This function returns a
sync-time-to-server
The sync-time-to-server action syncs time from Interet server source. It belongs to the datetime category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = sync-time-to-server
Valid sizes
Examples
// Basic Usage
sync-time-to-server
unpack-row
The unpack-row action unpacks the individual row values into seperate values. It belongs to the row category within the data area.
Action Syntax
unpack-row $variable
Valid sizes
Examples
// Basic Usage
unpack-row $Irowvar