Hi,
i have a grid with grouping.
So when i group this cell:
, { text: '@Resources.Name', columntype: 'combobox', displayfield: "SpecialName", datafield: "SpecialId", filtertype: 'checkedlist', width: '8%',
initeditor: function (row, cellvalue, editor) {
editor.jqxComboBox({ source: dataAdapterTypes, displayMember: 'Name', valueMember: 'Id', placeHolder: "Bitte wählen", height: '25', searchMode: 'containsignorecase', autoComplete: true });
},
// update the editor's value before saving it.
cellvaluechanging: function (row, column, columntype, oldvalue, newvalue) {
// return the old value, if the new value is empty.
if (newvalue == "") return oldvalue;
}
}
it appears the “SpecialName” as text in Grouping.
But i will have the “@Resources.Name” as text.
How can i do this?