我想在NetBeans中使用KendoUI的jsp包装器。
在我的控制器中,我添加了ComboBox的示例代码:
@RequestMapping(value = {"/", "/index"}, method = RequestMethod.GET)
public String index(Model model) {
model.addAttribute("fabrics", new DropDownListItem[] {
new DropDownListItem("Cotton", "1"),
new DropDownListItem("Polyester", "2"),
new DropDownListItem("Cotton/Polyester", "3"),
new DropDownListItem("Rib Knit", "4")
});
model.addAttribute("sizes", new String[] {
"X-Small",
"Small",
"Medium",
"Large",
"X-Large",
"2X-Large"
});
return "web/combobox/index";
}
我做了导入:
import com.kendoui.spring.models.DropDownListItem;
但是NetBeans说:包导入com.kendoui.spring.models不存在。 我使用NetBeans的“手动安装工件”功能将kendo-taglib-2013.1.319.jar的依赖项添加到pom.xml。在html端使用KendoUI时一切正常。
http://docs.kendoui.com/getting-started/using-kendo-with/jsp/introduction上的要求说“Eclipse Juno for Enterprise Developers(J2EE支持)”是必需的。
你们有没有成功地将KendoUI用于NetBeans?是的,有什么步骤可以继续?
答案 0 :(得分:1)
看看以下答案:
我希望这会有所帮助。如果有人能够用Kendo Ui
开发NetNeans
,我会非常感谢他