带NetBeans的KendoUI

带NetBeans的KendoUI,netbeans,kendo-ui,Netbeans,Kendo Ui,我想将KendoUI的jsp包装器与NetBeans一起使用 在我的控制器中,我添加了ComboBox的示例代码: @RequestMapping(value = {"/", "/index"}, method = RequestMethod.GET) public String index(Model model) { model.addAttribute("fabrics", new DropDownListItem[] { new DropDownListI

我想将KendoUI的jsp包装器与NetBeans一起使用

在我的控制器中,我添加了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时,一切正常

上的需求是必需的,例如“EclipseJuno for Enterprise Developers(J2EE支持)”


你们曾经成功地将KendoUI与NetBeans结合使用过吗?如果选择“是”,则需要执行哪些步骤?

编辑:您可以在netbeans中使用剑道ui,但需要自行决定。没有特别的整合。检查netbeans最新的惊人版本7.4。它包括由cordova构建到android和ios的软件包。您可以作为html5 cordova应用程序启动剑道ui项目。我希望这有帮助

请查看以下答案:

  • 我希望这有帮助。如果有人能够用
    NetNeans
    开发
    kendoui
    ,我将非常感谢他