0
我想阻止引導模式退出,直到ajax響應,或者甚至不響應,如果響應是錯誤的,可以說。
下面是代碼:只有 莫代爾體:防止模態退出,直到ajax響應
<div class="modal-body">
<div class="control-group">
<div class="controls">
<label for="sharedUser" class="control-label right">Share With:</label>
<input type="text" name="sharedUser" id="sharedUser" placeholder="Username to Share">
<label class="help-block errorLabel fl width100" id="kpiNameError"></label> </div>
</div> </div>
這裏是決定如何處理模式做腳本:
function shareKpi(kpiId,username){
var shareUrl = "${createLink(action:'shareKpi',controller:'dashboard')}"
var msg;
jQuery.ajax({
type: 'POST',
url: shareUrl,
data: "kpiId="+kpiId+"&sharedUser="+username,
success: function(response,textStatus){
msg=response;
},
error:function(XMLHttpRequest,textStatus,errorThrown){}
});
return false;
}
我想是模式不被解僱,直到Ajax響應。
其實,即使我不清楚這個問題,這個問題是打開進一步的編輯或建議。
在此先感謝