使用NetBeans的KendoUI

时间:2013-04-08 08:40:30

标签: netbeans kendo-ui

我想在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?是的,有什么步骤可以继续?

1 个答案:

答案 0 :(得分:1)

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

看看以下答案:

  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)
  5. 我希望这会有所帮助。如果有人能够用Kendo Ui开发NetNeans,我会非常感谢他