如何使用Jquery调用GWT绑定事件
我有一个 GWT 演示项目,其中包含一个 3 列 5 行的数据表。我使用 gwt 来实现:
table.addTableListener( new TableListener(){
public void onCellClicked(SourcesTableEvents sender, int row, int cell) {
demoFunc();
}
});
How can I create a html button and using jquery to call "onCellClicked" event.
<input type="button" id="button1" value="click here"/ >
..
$("#button1").click(function(){
//implement here to call "onCellClicked" event.
});
I have a GWT demo project that includes a data table with 3 columns and 5 rows. i used gwt to implement:
table.addTableListener( new TableListener(){
public void onCellClicked(SourcesTableEvents sender, int row, int cell) {
demoFunc();
}
});
How can i create a html button and using jquery to call "onCellClicked" event.
<input type="button" id="button1" value="click here"/ >
..
$("#button1").click(function(){
//implement here to call "onCellClicked" event.
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 gquery,GWT 的 jquery 端口:http://code.google.com/p/ gwtquery/
尚未测试过 GWT 1.5 以外的版本。
否则,您需要执行一些 JSNI,将 javascript 函数包装在 JSNI 标记内,并使用 GWT 或使用 jQuery 或任何您想要的方式调用 javascript。
请参阅文档:http://code.google.com/webtoolkit/doc/2.2 /FAQ_Client.html
Have a look at gquery, a jquery port of GWT: http://code.google.com/p/gwtquery/
Haven't tested it beyond GWT 1.5.
Otherwise you'll need to do some JSNI, wrap a javascript function inside JSNI tags and call the javascript either using GWT or using jQuery or whichever way you want.
See the docs: http://code.google.com/webtoolkit/doc/2.2/FAQ_Client.html