vaadin 7:Widgetset不包含我的自定义小部件

时间:2015-10-01 14:35:52

标签: java gwt widget vaadin vaadin7

我正在使用vaadin 7.5.6创建一个自定义GWT小部件并在我的应用程序中使用它,但是当我运行它时,我的自定义组件没有显示,我收到消息“Widgetset不包含实现。 ..“。

我知道有几个问题与同一个问题有关,但我已经尝试过所有“解决方案”:

  • 重新编译widgetset
  • 清除Ivy的所有缓存
  • 清理项目
  • 检查注释@VaadinServletConfiguration,它已包含widgetset =“com.example.myapp.widgetset.MyAppWidgetset”)

但没有任何作用......对于可能出现什么问题的任何建议?

要创建小部件,我按照Vaadin's Wiki中的说明进行操作。

我的widgetset看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>

    

<!--
 Uncomment the following to compile the widgetset for one browser only.

 Multiple browsers can be specified as a comma separated list. The
 supported user agents at the moment of writing were:
 ie8,ie9,gecko1_8,safari,opera

 The value gecko1_8 is used for Firefox and safari is used for webkit
 based browsers including Google Chrome.
-->
<!-- <set-property name="user.agent" value="safari"/> -->

<!--
 To enable SuperDevMode, uncomment this line.

 See https://vaadin.com/wiki/-/wiki/Main/Using%20SuperDevMode for more
 information and instructions.
-->
<!-- <set-configuration-property name="devModeRedirectEnabled" value="true" /> -->


<inherits name="com.lexaden.business.chart.widgetset.OrganisationWidgetset" />

<inherits name="com.vaadin.addon.touchkit.gwt.TouchKitWidgetSet" />

<inherits name="org.vaadin.alump.beforeunload.gwt.BeforeUnloadWidgetSet" />

<inherits name="com.example.fieldcustomcomponents.FieldcustomcomponentsWidgetset" />

提前致谢, 塞马蒂亚斯

0 个答案:

没有答案