I have set my culture to use EN-GB format
I have a change event that updates a hidden field. Visually I can see the calendar selecting the right format however the hidden field is always using the US format.
Do I need to something different to get this to work or is there a bug with the control?
$(
"#datePicker"
).kendoDatePicker(
{
change:
function
() {
$(
"#CampaignModel_RequiredSendDate"
).val(kendo.toString(
this
.value(),
'd'
));
}
});
I have a change event that updates a hidden field. Visually I can see the calendar selecting the right format however the hidden field is always using the US format.
Do I need to something different to get this to work or is there a bug with the control?