0

我想将 Jsp 包装器用于带有 NetBeans 的 KendoUI。

在我的控制器中,我添加了 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 说:package import com.kendoui.spring.models does not exist。我使用 NetBeans 的“手动安装工件”功能将 kendo-taglib-2013.1.319.jar 的依赖项添加到 pom.xml。在 html 端使用 KendoUI 时一切正常。

http ://docs.kendoui.c​​om/getting-started/using-kendo-with/jsp/introduction 上找到的要求说“面向企业开发人员的 Eclipse Juno(J2EE 支持)”是必需的。

你们有没有成功地将 KendoUI 与 NetBeans 一起使用?如果是,要进行哪些步骤?

4

1 回答 1

1

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

看看以下答案:

  1. 没有公司支持 Kendo UI 的 IDE
  2. Eclipse 不完全支持
  3. Eclipse 试图帮助你
  4. Kendo UI Bootstrapper(帮助启动您的项目)

我希望这有帮助。如果有人有能力与他一起发展Kendo UiNetNeans我会非常感谢他

于 2013-10-28T17:42:29.047 回答