Hello !
I have a form with a dropDownList.
Something like that :
{
bind: 'state',
type: 'option',
label: 'State',
required: true,
labelWidth: '85px',
width: '250px',
component: 'jqxDropDownList',
options: [
{ value: 'California' },
{ value: 'New York'},
{ value: 'Oregon'},
{ value: 'Illinois'},
{ value: 'Texas'}
]
},
but i don’t want to display california in my dropdown list but i want to display his caption : ‘Californie’ for example.
it is possible ? to have a caption for a value in dropDownList ?
Save ‘California’ in my json but display ‘Californie’ on my form.
Thanks a lot for your help