The data in Controller:
model.addAttribute("colors", colorList);
In the jsp file, how to get the "colors" in the Kendo UI scripts?
$("#color").kendoDropDownList({
dataTextField: "text",
dataValueField: "value",
dataSource: **${colors}**,
index: 0,
change: onChange
});
Please give suggestions without "kendo-jsp style"(kendo:dataSource) and "transport-read" ways, thanks a lot!
Needless to answer this silly question: convert the colorList to json in Controller ...