diff templates/recordedTable.html @ 161:84220382fea8

mod: Ï¿²èÃæ¤Î¥­¥ã¥ó¥»¥ë¤ò²Äǽ¤Ë¤·¤¿¡ÊÆ°ºî³Îǧ¡¢¤Þ¤ÀÉÔ´°Á´¤«¤â¡Ë
author epgrec@park.mda.or.jp <yoneda@recorder.localnet.mda.or.jp>
date Sun, 04 Apr 2010 17:10:17 +0900
parents 5096001c4995
children c6c6bd734f18
line wrap: on
line diff
--- a/templates/recordedTable.html	Tue Mar 30 19:00:39 2010 +0900
+++ b/templates/recordedTable.html	Sun Apr 04 17:10:17 2010 +0900
@@ -25,19 +25,20 @@
 		},
 		rec:function(id){
 			var df = 0;
-
 			if( $('#delete_file').attr('checked') ) {
 				df = 1;
 			}
 			$('#floatBox4Dialog').dialog('close');
-			
+			$('#floatBox4Dialog').html('削除中.......');
+			$('#floatBox4Dialog').dialog('open', 'center');
 			$.get(INISet.prgCancelURL, { reserve_id: id, delete_file: df } ,function(data){
-				
 				if(data.match(/^error/i)){
+					$('#floatBox4Dialog').dialog('close');
 					alert(data);
 				}
 				else {
 					$('#resid_' + id ).hide();
+					$('#floatBox4Dialog').dialog('close');
 				}
 			});
 		},