The KendoGrid does not seem to handle some CSS settings within a template.
The # is causing problems even when not grouped together with the equal sign (=).
$("#myList").kendoGrid({
dataSource: mySource
columns: [
{ field: "SupplierName", title: "Vendor Name:" },
{ field: "ColorCode", title: "Vendor Status", template: '<div style="width: 50px; height:20px; background-color: #FF16DC04">#= ColorCode #</div>'}]
});The # is causing problems even when not grouped together with the equal sign (=).