如何使用Jquery调用GWT绑定事件

发布于 2024-11-09 00:52:17 字数 563 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

╄→承喏 2024-11-16 00:52:17

看一下 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文