Date Range

  • This component is not suitable for users that require assistive technologies. This control is not suitable for users who require assistive technologies.

Lets the user choose a date range either by keyboard input or by graphically selecting the dates from a calendar. The range must have a start and an end date.

Create value

Always use SoftadminApi.DateRangeControl_CreateValue to create the value, both from field meta data and from default values. The expected format may change between versions.

Parse value

Always use SoftadminApi.DateRangeControl_ParseValue to parse it's content. The input format may change between versions.

Start value: A value created using [SoftadminApi.DateRangeControl_CreateValue].
Return value: A value that can be parsed using [SoftadminApi.DateRangeControl_ParseValue].
Supported in: NewEdit Parameter page Multirow

Appearance

Date range picker

JavaScript

When using the field value in JavaScript functions the format will be:

{
    "fromDate": "yyyy-MM-dd",
    "toDate": "yyyy-MM-dd"
}

Default value

SQL Call: Default value

Retrieves the default value for the control.

May modify database: No

Resultset: Default value

Table count: repeated exactly once
Row count: exactly one row
Columns
<column with ordinal 1> mandatory string
The default value

Validation

SQL Call: Validation

This call is only made if there is a field validation set for the field info and the field has any content. Fields used in an editable grid do not use this call.

Live Validation

Performs field validation when the user leaves the field or one of its dependencies is changed, initial values set by default value and initial values in edit-mode are not validated.

Save Validation

When saving the validation runs server side if the field value has changed. A field value is considered changed if in new mode the value is anything other than NULL. In edit mode it is considered changed if it has a value that was not returned by the GetEditFields procedure.

May modify database: No

Parameters

@Value string
The value of the field, the procedure will not be called if value is NULL.

Resultset: Validation messages (optional)

Table count: repeated zero or one time
Row count: zero or one row
Columns
Error optional string
Error message to display. Blocks the user from saving.
Info optional string
Informative message to display. Does not block saving.
Warning optional string
Warning message to display. Does not block saving.