Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This example shows a field by field selection to create a date. The starting default date is select based on the current time (this requires release 4.8 or above).

 

Image Added

Wiki Markup

Cut and paste following into the Insert -> Markup dialog to get started.

Code Block
languagetext
{run:autoRun=true|replace=
date::Date:group,
year:$current_time(yyyy):Year:integer-select:2015:2020,
month:$current_time(MM):Month:select::01:JAN:02:FEB:03:MAR:04:APR:05:MAY:06:JUN:07:JULY:08:AUG:09:SEPT:10:OCT:11:NOV:12:DEC,
day:$current_time(d):Day:integer-select:1:31}
 
DateSelected date: $year-$month-$day
 
{run}

...