html-month-picker
Reactive icon

HTML Month Picker

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 03 January 2024
 by 
0.0
 (0 ratings)
html-month-picker

HTML Month Picker

Documentation
1.0.0

HTML Month Picker component create input fields that let the user enter a month and year allowing a month and year to be easily entered. The value is a string whose value is in the format "YYYY-MM", where YYYY is the four-digit year and MM is the month number.

It has 4 Input parameters mentioned below -

InputId* (Text)  - Input field Id on which month picker will be attached.  

Min (Text) - e.g - yyyy-MM (2024-01)

        The earliest year and month to accept, in the same "yyyy-MM" format,

          If a value is specified for min that isn't a valid year and month string, the input has no minimum value.

          This value must be a year-month pairing which is earlier than or equal to the one specified by the max attribute.

Max (Text) - e.g - yyyy-MM (2024-12)

          The latest year and month, in the string format yyyy-MM

          If the value of the max attribute isn't a valid string in "yyyy-MM" format, then the element has no maximum value.

          This value must specify a year-month pairing later than or equal to the one specified by the min attribute.

Step (Integer) - The step attribute is a number that specifies the granularity that the value must adhere to, or the special value any, which is described below. Only values which are equal to the basis for stepping are valid.

e.g. - 2