Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
Ig combo in in rowedittemplate
posted

Dropdown in rowedittemplate dialog not showing text key(Reason -Text key and value key are different).

columnSettings: [{
//The combo is defined as an editor provider. Combo options are defined under 'editorOptions'.
columnKey: "Employment_Source_Type",
editorType: 'combo',

required: true,
editorOptions: {
mode: "editable",
dataSource: getIncomeTypes(),
textKey: "Name",

valueKey: "Employment_Source_Type",
AllowCustomValue:true,
autoComplete: true,

}
},

It shows no values in dropdown at the first time editing using rowedittemplate  dialog.I want to display Name in dropdown.How to solve this.Please help me.