Example · Features
Custom Labels
Customize all text labels for localization
Button Labels
Customize OK and Cancel button text:
index.tstypescript
1const picker = new TimepickerUI(input, {2 labels: {3 ok: 'Confirm',4 cancel: 'Close'5 }6});7picker.create();
AM/PM Labels
Customize AM and PM labels:
index.tstypescript
1const picker = new TimepickerUI(input, {2 clock: { type: '12h' },3 labels: {4 am: 'Morning',5 pm: 'Evening'6 }7});8picker.create();
Time Label
Customize time selection label:
index.tstypescript
1const picker = new TimepickerUI(input, {2 labels: { time: 'Choose Your Time' }3});4picker.create();
Mobile Labels
Customize labels for mobile version:
index.tstypescript
1const picker = new TimepickerUI(input, {2 ui: { mobile: true },3 labels: {4 mobileHour: 'H',5 mobileMinute: 'M',6 mobileTime: 'Set Time'7 }8});9picker.create();
Polish Localization
Example with Polish labels:
index.tstypescript
1const picker = new TimepickerUI(input, {2 labels: {3 ok: 'Zatwierdź',4 cancel: 'Anuluj',5 time: 'Wybierz godzinę'6 }7});8picker.create();