Quick explanation of my issue: I have an editable Kendo grid, and one of the columns is a dropdownlist, defined as such:
$('<input required data-text-field="fullName" data-value-field="approverGuid" data-bind="value:' + options.field + '"/>')
.appendTo(container)
.kendoDropDownList({
index: 0,
dataTextField: "fullName",
dataValueField: "approverGuid",
autoBind: false,
dataSource: {
transport: {
read: {
dataType: 'json',
url: '/requisitions/ajax/getreqapprovers?account=' + accountNum
}
},
},
value: options.field
});
My problem is that on initial grid load, the column is just a regular text element, populated with the approverGuid field, when I want to display the fullName field. As soon as I click in the grid, the dropdownlist is created, and we now see the correct fullName that corresponds with the approverGuid we saw previously. I can select any name in my dropdown, update, and it correctly writes the approverGuid to my DB but it also reverts back to the approverGuid in my grid, since the dropdownlist element is gone.
Any suggestions on how to display the name initially, without losing the Guid value which is needed to update my DB?