Hi I use a DateItem in my project, everything works fine but the problem is that when I display the month it shows me like this
it displays the same characters in June and July
I want to indicate the language of the application is French
how can I show 4 characters in the DateItem, like this [janv,févr,..., juin, juil,...]
this is my source code
isc.DynamicForm.create({
ID: "dateForm",
numCols: 4,
width: 650,
fields: [
{name:"pickListDate", title:"PickList Date", type:"date", change:"dateLabel.setContents(value)",
wrapTitle:false , selectorFormat:"YM"}
]
});
it displays the same characters in June and July
I want to indicate the language of the application is French
how can I show 4 characters in the DateItem, like this [janv,févr,..., juin, juil,...]
this is my source code
isc.DynamicForm.create({
ID: "dateForm",
numCols: 4,
width: 650,
fields: [
{name:"pickListDate", title:"PickList Date", type:"date", change:"dateLabel.setContents(value)",
wrapTitle:false , selectorFormat:"YM"}
]
});
Comment