Hi ,
I change datepicker localization on my lanaguage , it work but datepicker required message not changed ??
its worked igEditor, igCombo ,... required message.
How to change datepicker validation messages ?
Thanks
Hello BK,
You can change this from the errorMessage option on the igValidator:
https://www.igniteui.com/help/api/2014.2/ui.igvalidator#options:errorMessage.
Please let me know if this works for you.
hi borris,
I dont want to change errorMessge every form.
I created infragistics.ui.editors-tr.js, infragistics.ui.grid-tr.js, infragistics.ui.combo-tr.js , its work.
this is my infragistics.ui.combo-tr js
if (!$.ig.Combo) { $.ig.Combo = { locale: { noMatchFoundText: 'Sonuç buşunamadı.', dropDownButtonTitle: 'Listele', clearButtonTitle: 'Temizle' } };}
if any combobox is empty ı see noMatchFoundText 'Sonuç buşunamadı.' on screen.
this is my validator-tr js
$.ig = $.ig || {};if (!$.ig.Validator) { $.ig.Validator = { locale: {
..... requiredMessage: 'Alan boş geçilemez.', dateFieldsMessage: 'blabla', invalidDayMessage: 'blabla', dateMessage: 'blabla', regExpMessage: "Kriter dışı giriş yaptınız.", errorMessage : "Hatalı tarih" } };}
for example I pass any editors empty I see requiredMessage: 'Alan boş geçilemez.' on screen
Where should I catch igDatePicker validation message ?
Thanks.