DateRangeInput JAVASCRIPT UI Component API

DateRangeInput Javascript API

Class

DateRangeInput

DateRangeInput specifies an input field where the user can enter a date range ( from date - to date ). It also has a popup with a Calendar that allows to select a date range. Time selection is an additional feature that can be enabled which allows to specify time for the date range.

Selector

smart-date-range-input

Properties

AanimationSets or gets the animation mode. Animation is disabled when the property is set to 'none'
DdateFormatDetermines the format of the dates displayed in the input. Accepts valid ECMAScript Internationalization API format. By default the date format is determined by the 'locale' property. Intl.DateTimeFormat is used to format date strings in JavaScript Click for more details. Property object's options:
  • day:string - Day format.
  • month:string - Month format.
  • year:string - Year format.
DdayDay format.
MmonthMonth format.
YyearYear format.

Events

CchangeThis event is triggered when the selection is changed.

Methods

CcloseCloses the drop down.
OopenOpens the drop down.
SselectSelects the text inside the input or if it is readonly then the element is focused.

Properties

animation"none" | "simple" | "advanced"

Sets or gets the animation mode. Animation is disabled when the property is set to 'none'

Allowed Values

  • "none" - animation is disabled
  • "simple" - ripple animation is disabled
  • "advanced" - all animations are enabled

Default value

"advanced"

Example

Set the animation property.

 <smart-date-range-input animation='none'></smart-date-range-input>

Set the animation property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.animation = 'simple';

Get the animation property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let animation = daterangeinput.animation;

dateFormatobject

Determines the format of the dates displayed in the input. Accepts valid ECMAScript Internationalization API format. By default the date format is determined by the 'locale' property. Intl.DateTimeFormat is used to format date strings in JavaScript

Default value

null

Properties

dateFormat

day"numeric" | "2-digit"

Day format.

Default value

"numeric"

month"numeric" | "2-digit" | "narrow" | "short" | "long"

Month format.

Default value

"numeric"

year"numeric" | "2-digit"

Year format.

Default value

"numeric"

Example

Set the dateFormat property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.dateFormat = { day: '2-digit', month: 'short' };

Get the dateFormat property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let dateFormat = daterangeinput.dateFormat.dateFormat;

disabledboolean

Enables or disables the element.

Default value

false

Example

Set the disabled property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.disabled = false;

Get the disabled property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let disabled = daterangeinput.dateFormat.disabled;

dropDownButtonPosition"none" | "left" | "right"

Determines the position of the drop down button.

Allowed Values

  • "none" - The drop down button is hidden and the element acts as a simple input.
  • "left" - A drop down button is displayed on the left side of the element. The element acts as a DropDownList or a ComboBox depending on the readonly property.
  • "right" - A drop down button is displayed on the right side of the element. The element acts as a DropDownList or a ComboBox depending on the readonly property.

Default value

"right"

Example

Set the dropDownButtonPosition property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.dropDownButtonPosition = 'left';

Get the dropDownButtonPosition property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let dropDownButtonPosition = daterangeinput.dateFormat.dropDownButtonPosition;

dropDownHeightstring | number

Sets the height of the drop down. By default it's set to an empty string. In this case the height of the drop down is controlled by a CSS variable.

Default value

""

Example

Set the dropDownHeight property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.dropDownHeight = 500;

Get the dropDownHeight property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let dropDownHeight = daterangeinput.dateFormat.dropDownHeight;

dropDownWidthstring | number

Sets the width of the drop down. By default it's set to an empty string. In this case the width of the drop down is controlled by a CSS variable.

Default value

""

Example

Set the dropDownWidth property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.dropDownWidth = 500;

Get the dropDownWidth property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let dropDownWidth = daterangeinput.dateFormat.dropDownWidth;

iconsboolean

Determines whether the 'Today/Clear' icons will be visible or not.

Default value

false

Example

Set the icons property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.icons = false;

Get the icons property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let icons = daterangeinput.dateFormat.icons;

inputPurposestring

Sets the purpose of the input and what, if any, permission the user agent has to provide automated assistance in filling out the element's input when in a form, as well as guidance to the browser as to the type of information expected in the element. This value corresponds to the standard HTML autocomplete attribute and can be set to values such as 'on', 'name', 'organization', 'street-address', etc.

Default value

"off"

Example

Set the inputPurpose property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.inputPurpose = 'country';

Get the inputPurpose property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let inputPurpose = daterangeinput.dateFormat.inputPurpose;

localestring

Sets or gets the language. Used in conjunction with the property messages.

Default value

"en"

Example

Set the locale property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.locale = 'en';

Get the locale property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let locale = daterangeinput.dateFormat.locale;

localizeFormatFunctionfunction

Callback used to customize the format of the messages that are returned from the Localization Module.

Example

Set the localizeFormatFunction property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.localizeFormatFunction = function(defaultMessage, message, messageArguments){return '...'};

Get the localizeFormatFunction property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let localizeFormatFunction = daterangeinput.dateFormat.localizeFormatFunction;

maxany

Determines the max date for the Calendar displayed inside the popup.

Default value

new Date(2100, 1, 1)

Example

Set the max property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.max = new Date(2025, 0, 1);

Get the max property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let max = daterangeinput.dateFormat.max;

messagesobject

Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale.

Default value




"en": {

"propertyUnknownType": "'{{name}}' property is with undefined 'type' member!",

"propertyInvalidValue": "Invalid '{{name}}' property value! Actual value: {{actualValue}}, Expected value: {{value}}!",

"propertyInvalidValueType": "Invalid '{{name}}' property value type! Actual type: {{actualType}}, Expected type: {{type}}!",

"elementNotInDOM": "Element does not exist in DOM! Please, add the element to the DOM, before invoking a method.",

"moduleUndefined": "Module is undefined.",

"missingReference": "{{elementType}}: Missing reference to {{files}}.",

"htmlTemplateNotSuported": "{{elementType}}: Browser doesn't support HTMLTemplate elements.",

"invalidTemplate": "{{elementType}}: '{{property}}' property accepts a string that must match the id of an HTMLTemplate element from the DOM.",

"invalidNode": "{{elementType}}: Invalid parameter '{{node}}' when calling {{method}}."

}

Example

Set the messages property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.messages = {"en":{"propertyUnknownType":"'{{name}}' property is with undefined 'type' member!","propertyInvalidValue":"Invalid '{{name}}' property value! Actual value: {{actualValue}}, Expected value: {{value}}!","propertyInvalidValueType":"Invalid '{{name}}' property value type! Actual type: {{actualType}}, Expected type: {{type}}!","elementNotInDOM":"Element does not exist in DOM! Please, add the element to the DOM, before invoking a method.","moduleUndefined":"Module is undefined.","missingReference":"{{elementType}}: Missing reference to {{files}}.","htmlTemplateNotSuported":"{{elementType}}: Browser doesn't support HTMLTemplate elements.","invalidTemplate":"{{elementType}}: '{{property}}' property accepts a string that must match the id of an HTMLTemplate element from the DOM.","invalidNode":"{{elementType}}: Invalid parameter '{{node}}' when calling {{method}}."}};

Get the messages property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let messages = daterangeinput.dateFormat.messages;

minany

Determines the min date for the Calendar displayed inside the popup.

Default value

new Date(1900, 1, 1)

Example

Set the min property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.min = new Date(2000, 1, 2);

Get the min property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let min = daterangeinput.dateFormat.min;

monthsnumber

Determines the number of months that will be displayed inside the popup.

Default value

1

Example

Set the months property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.months = 3;

Get the months property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let months = daterangeinput.dateFormat.months;

namestring

Sets or gets the name attribute for the element. Name is used when submiting data inside an HTML form.

Default value

""

Example

Set the name property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.name = 'dropDown2';

Get the name property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let name = daterangeinput.dateFormat.name;

openedboolean

Determines whether the drop down is opened or not.

Default value

false

Example

Set the opened property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.opened = false;

Get the opened property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let opened = daterangeinput.dateFormat.opened;

placeholderstring

Determines the placeholder of the input.

Default value

""

Example

Set the placeholder property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.placeholder = 'Enter:';

Get the placeholder property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let placeholder = daterangeinput.dateFormat.placeholder;

readonlyboolean

Determines whether ot not the user can enter text inside the input. if dropDownButtonPosition is set to 'left' or 'right' then readonly determines whether the element acts as a ComboBox or a DropDownList if a dataSource is provided.

Default value

false

Example

Set the readonly property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.readonly = false;

Get the readonly property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let readonly = daterangeinput.dateFormat.readonly;

rightToLeftboolean

Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts.

Default value

false

Example

Set the rightToLeft property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.rightToLeft = true;

Get the rightToLeft property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let rightToLeft = daterangeinput.dateFormat.rightToLeft;

separatorstring

Determines the delimiter between the selected dates in the input. This delimiter is ued to distinguish the starting date from the ending date.

Default value

" - "

Example

Set the separator property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.separator = ' | ';

Get the separator property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let separator = daterangeinput.dateFormat.separator;

timeFormatobject

Determines the format of the dates displayed in the input. Accepts valid ECMAScript Internationalization API format. By default the date foramt is determined by the 'locale' property.

Default value

null

Properties

hour"numeric" | "2-digit"

Hour format.

Default value

"2-digit"

Get the hour property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let hour = daterangeinput.dateFormat.hour;

minute"numeric" | "2-digit"

Minute format.

Default value

"2-digit"

Get the minute property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let minute = daterangeinput.dateFormat.minute;

Example

Set the timeFormat property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.timeFormat.timeFormat = { hour: '2-digit', minute: '2-digit' };

Get the timeFormat property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let timeFormat = daterangeinput.dateFormat.timeFormat.timeFormat;

timepickerboolean

Determines whether time selection is available or not.

Default value

false

Example

Set the timepicker property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.timeFormat.timepicker = false;

Get the timepicker property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let timepicker = daterangeinput.dateFormat.timeFormat.timepicker;

themestring

Determines the theme for the element. Themes define the look of the elements.

Default value

""

Example

Set the theme property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.timeFormat.theme = 'red';

Get the theme property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let theme = daterangeinput.dateFormat.timeFormat.theme;

unfocusableboolean

If is set to true, the element cannot be focused.

Default value

false

Example

Set the unfocusable property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.timeFormat.unfocusable = false;

Get the unfocusable property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let unfocusable = daterangeinput.dateFormat.timeFormat.unfocusable;

valuestring | object

Sets or gets the value of the element. The type of the value depends on the valueType property.

Default value

""

Example

Set the value property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.timeFormat.value = value2;

Get the value property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let value = daterangeinput.dateFormat.timeFormat.value;

valueType"string" | "object"

Determines the value type returned from the `value` property.

Allowed Values

  • "string" - Returns the value as a string, e.g. '01-01-2020 - 31-12-2020'.
  • "object" - Returns the value as an object which contains the start and end dates, e.g. { from: dateFrom, to: dateTo }

Default value

"string"

Example

Set the valueType property by using the HTML Element's instance.

 const daterangeinput = document.querySelector('smart-date-range-input');
 daterangeinput.dateFormat.timeFormat.valueType = 'string';

Get the valueType property.

 const daterangeinput = document.querySelector('smart-date-range-input');
 let valueType = daterangeinput.dateFormat.timeFormat.valueType;

Events

changeCustomEvent

This event is triggered when the selection is changed.

  • Bubbles Yes
  • Cancelable No
  • Interface CustomEvent
  • Event handler property onChange

Arguments

evCustomEvent
ev.detailObject
ev.detail.label - The label of the new selected item.
ev.detail.oldLabel - The label of the item that was previously selected before the event was triggered.
ev.detail.oldValue - The value of the item that was previously selected before the event was triggered.
ev.detail.value - The value of the new selected item.

Methods

isDefaultPrevented

Returns true if the event was prevented by any of its subscribers.

Returns

boolean true if the default action was prevented. Otherwise, returns false.

preventDefault

The preventDefault() method prevents the default action for a specified event. In this way, the source component suppresses the built-in behavior that follows the event.

stopPropagation

The stopPropagation() method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases.

Example

Set up the event handler of change event.

const daterangeinput = document.querySelector('smart-date-range-input');
daterangeinput.addEventListener('change', function (event) {
    const detail = event.detail,
        label = detail.label,
        oldLabel = detail.oldLabel,
        oldValue = detail.oldValue,
        value = detail.value;

	// event handling code goes here.
})

Methods

close(): void

Closes the drop down.


Invoke the close method.

const daterangeinput = document.querySelector('smart-date-range-input');
daterangeinput.close();

Try a demo showcasing the close method.

open(): void

Opens the drop down.


Invoke the open method.

const daterangeinput = document.querySelector('smart-date-range-input');
daterangeinput.open();

Try a demo showcasing the open method.

select(): void

Selects the text inside the input or if it is readonly then the element is focused.


Invoke the select method.

const daterangeinput = document.querySelector('smart-date-range-input');
daterangeinput.select();