filtertable的问题

大家好!!
为什么在用filtertable的时候,界面出现这样的错误;Widgetset does not contain implementation for org.tepi.filtertable.FilterTable. Check its component connector’s @Connect mapping, widgetsets GWT module description file and re-compile your widgetset. In case you have downloaded a vaadin add-on package, you might want to refer to add-on instructions. 请问大家是什么问题啊???

应该是没有compile widgetset, 点一下Eclipse工具栏上那个有Vaadin Logo的compile widgetset的小按钮就好了

我试过很多次了 ,在运行的时候界面 仍然显示Widgetset does not contain implementation for org.tepi.filtertable.FilterTable. Check its component connector’s @Connect mapping, widgetsets GWT module description file and re-compile your widgetset. In case you have downloaded a vaadin add-on package, you might want to refer to add-on 错误。

  1. 检查下Vaadin和FilterTable的版本是否匹配
  2. clean一下project
  3. clean一下Tomcat

请教: 有没有与FilterTable类似的add on 啊!!那个实在是用不了啊!

我自己试了下FILTER TABLE,挺好用的呀。Vaadin 7.07 + Tomcat7 + Eclipse + filtertable 0.8.9.v7 + popupbutton2.2.0.
你compile widgetset的时候没有问题,只是在运行的时候才有那个错误?
有没有xxx.gwt.xml这个文件? 这个文件里有没有

[code]

[/code]?

多谢你的帮忙!! 但是 还是不行 ,在gwt.xml 里有这两项。 希望你能否 将你用的测试项目 ,能发过来 我试试吗?? 当然 如果可以的话, 不过 我用的是jboss-eap-6.1+vaadin 7 + eclipse + filtertable 0.8.9.v7 + popupbutton2.2.0. 我的qq:1604530607

很简单的例子,从FILTER TABLE ADDON的页面COPY PASTE,稍微修改了一点点(因为页面上的例子还是V6的)
本来想把WAR传上来的,太慢了,没成功,就放GITHUB上了,
https://github.com/haiwan/filtertable

我今天特别的高兴! FILTER TABLE ADDON 的问题终于解决了!! 在此非常非常的感谢 Haijian Wang 先生,帮助我解决了那么多的问题,同时 增强了我对vaadin 7的信心。 您在百忙之中,还要不辞辛苦的回答初学者的问题, 真是精神可嘉!!! 祝你工作顺利!! 身体健康!!!

太客气了,我很想知道你有没有找到原因,到底是什么问题呢?

我是将 初始化的配置改了 代码如下:
public class FttUI extends UI {

@WebServlet(value = "/*", asyncSupported = true, initParams = {
		@WebInitParam(name = "ui", value = "com.example.ftt.FttUI"),
		@WebInitParam(name = "widgetset", value = "com.example.ftt.widgetset.FttWidgetset"),
		@WebInitParam(name = "productionMode", value = "false") })
public static class Servlet extends VaadinServlet {
	
}
            不好意思  这么久才回复!!

不过 最近我在更新eclipse插件后,发现新建的项目都报这个错误 :

@WebServlet(value = "/*", asyncSupported = true)
[u]

@VaadinServletConfiguration(productionMode
[/u] = false, ui = CheckouttUI.class)
public static class Servlet extends VaadinServlet {
}
上面的画横线的地方有错误,而且
import com.vaadin.annotations.VaadinServletConfiguration;
这个也报错误???
还有 就是 下图中的 ivy.xml[nodeploy]
是什么意思啊??
13066.png