【问题标题】:KendoUI with NetBeans带有 NetBeans 的剑道 UI
【发布时间】:2013-03-30 06:39:01
【问题描述】:

我想将 Jsp 包装器用于 KendoUI 和 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 说:package import 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(J2EE 支持)”是必需的。

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

【问题讨论】:

    标签: netbeans kendo-ui


    【解决方案1】:

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

    看看以下答案:

    1. there no company supported IDE for Kendo UI
    2. Eclipse not fully supported
    3. Eclipse trying to assist you
    4. Kendo UI Bootstrapper (Helper to start up your project)

    我希望这会有所帮助。如果有人能够用NetNeans 开发Kendo Ui,我会非常感谢他

    【讨论】:

      猜你喜欢
      • 2011-11-21
      • 2013-10-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-09-27
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多