0
我有一個GWT演示項目,其中包括一個3列和5行的數據表。我使用GWT來實現:如何使用Jquery調用GWT綁定事件
table.addTableListener(new TableListener(){
public void onCellClicked(SourcesTableEvents sender, int row, int cell) {
demoFunc();
}
});
如何創建一個HTML按鈕,並使用jquery稱之爲「onCellClicked」事件。
<input type="button" id="button1" value="click here"/ >
..
$("#button1").click(function(){
//implement here to call "onCellClicked" event.
});