dilog の open イベントに次のコードセグメントを追加します
$( "#dlgSearch").dialog({
autoOpen: false,
bgiframe: true,
width: 600,
//height: 225,
modal: true ,
resizable : false,
open: function() {
//jqueryのダイアログのキーボードイベント(入力後Enterキーで取得)
$(this).bind("keypress.ui-ダイアログ", function(event) {
if (event.keyCode == $.ui.keyCode.ENTER) {
alert("Enter が押されました!");
}
});
},
ボタン: {
"キャンセル": function() {
$(this).dialog("close");
},
"検索": function( ) {
}
},
close: function() {
}
});