Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace for the JQuery UI PrimeFaces date picker.

The Prime date picker is a JQuery UI widget used to select a date featuring display modes, paging, localization, AJAX selection and more.

Index

Type Aliases

AlterationMode: "DECREMENT" | "INCREMENT"

Represents whether a numerical value is to be decremented or incremented.

BaseCallback: ((this: PickerInstance) => void)

Type declaration

BaseEventCallback: ((this: PickerInstance, event: TriggeredEvent) => void)

Type declaration

Cardinal: number

A cardinal number, i.e. a number that represents an amount of something. Some common examples include the number of days in a month or the number of seconds in a year.

ChangeTimeType: -1 | 0 | 1 | 2 | 3 | 4

Specifies which part of the time is changed:

  • -1: The time is not changed.
  • 0: Changes the hour.
  • 1: Changes the minutes.
  • 2: Changes the second.
  • 3: Changes the millisecond.
  • 4: Changes the half day period.
ClockConvention: "12" | "24"

Defines the hour format or the clock convention.

  • 12: Time convention in which the 24 hours of the day are divided into two periods: a.m. and p.m..
  • 24: Time convention in which the 24 hours of the day are divided into one period.
DateTemplate: ((this: PickerInstance, monthNameOrDate: string | DayInstantSelectableRelative) => string)

Type declaration

DayOfTheMonth: number

Integer value representing the day of the month. 1 represents the first day of the month.

DayOfTheWeek: number

Integer value representing the day of the week, starting with 0 for Sunday and ending with 6 for Saturday.

HalfDayPeriod: "AM" | "PM"

Represents the available periods of a 12 hour clock convention.

HourOfTheDay: number

Integer value representing the hour of the day. 0 represents midnight.

MillisecondOfTheSecond: number

Integer value representing the millisecond segment of a time. 0 represents 0 milliseconds past the second.

MinuteOfTheHour: number

Integer value representing the minute segment of a time. 0 represents 0 minutes past the hour.

MonthOfTheYear: number

Integer value representing the month, beginning with 0 for January and ending with 11 for December.

MonthOfTheYearOneBased: number

Integer value representing the month, beginning with 1 for January and ending with 12 for December.

MutationCallback<T>: ((this: PickerInstance, ...newValues: T) => void)

Type Parameters

  • T extends unknown[]

Type declaration

    • Callbacks for when a value has changed.

      Parameters

      Returns void

MutationEventCallback<T>: ((this: PickerInstance, event: TriggeredEvent, ...newValues: T) => void)

Type Parameters

  • T extends unknown[]

Type declaration

OneDimensionalDirection: -1 | 1

Represents a one dimensional direction:

  • -1: Backwards.
  • +1: Forwards.
SecondOfTheMinute: number

Integer value representing the second segment of a time. 0 represents 0 seconds past the minute.

SelectionMode: "single" | "multiple" | "range"

Defines the selection mode, whether one or multiple dates can be selected.

ViewMode: "date" | "month"

Defines the view mode, whether a date or month is to be selected.

YearInstant: number

An integer value representing the year. All values represent the actual year.

Generated using TypeDoc