I'm trying to add a bullet point to my dropdown entries and while it works when it displays in the dropdown, when I try to edit it it reverts back to the character code.
Here is the code I'm using for my dropdown and it's in a grid with inline editing.
$('<input required name="' + options.field + '"/>')
.appendTo(container)
.kendoDropDownList({
dataTextField: "Details",
dataValueField: "Id",
dataSource: dataSource,
optionsLabel: {
Details: "Choose an item...",
Id: -1
},
template: "#= data.Details #"
});
Any help would be appreciated.