tapestry5-jqueryとDialogコンポーネントを使用すると、親ダイアログのクローズアクションを実装するにはどうすればよいですか。私はいくつかのコードを実行し、ページを変更せずに親ダイアログを閉じるボタンを意味します。Tapestry 5、jQuery UIダイアログとクローズアクション
これはjavascriptのは、私がやっているの唯一のバージョンである:
<div id="container">
¿Are you sure to delete selected items?
</div>
$('#container').dialog({
modal : true,
buttons:[{
text: "Yes",
click: function() {
//Perform action here, then close dialog.
$(this).dialog("close");
}
},{
text: "No",
click: function() {
//Only close dialog
$(this).dialog("close");
}
}
}]
});
しかし、私はタペストリーを使用する必要が5個のタグとJavaクラスのメソッド:
<t:jquery.dialog t:clientId="delDialog">
¿Are you sure to delete selected items?
<input t:type="submit" t:id="delYes" value="Yes"/>
<input t:type="submit" t:id="delNo" value="No"/>
</t:jquery.dialog>
Javaクラス:
public class UserAdmin {
@OnEvent(component = "delYes", value = EventConstants.SELECTED)
void delYesClicked(){
//Delete selected items
}
@OnEvent(component = "delNo", value = EventConstants.SELECTED)
void delNoClicked(){
//Close dialog
}
}
ありがとうございました。
は、付属のコードを試してみました動作しませんでした。 Mixinの提案は代わりに働いた。私は後でそれを入れます。 – dovahkiin