i am trying to use twitter bootstrap modal instead of custom confirm dialog.
my function
function getConfirm(confirmMessage){
if ( confirmMessage == undefined){
confirmMessage = '';
}
$('#confirmbox').modal({show:true,
backdrop:false,
keyboard: false,
});
$('#confirmMessage').html(confirmMessage);
$('#confirmFalse').click(function(){
$('#confirmbox').modal('hide');
return false;
});
$('#confirmTrue').click(function(){
$('#confirmbox').modal('hide');
return true;
});
}
</script>
<div class="modal" id="confirmbox" style="display: none">
<div class="modal-body">
<p id="confirmMessage">Any confirmation message?</p>
</div>
<div class="modal-footer">
<button class="btn" id="confirmFalse">Cancel</button>
<button class="btn btn-primary" id="confirmTrue">OK</button>
</div>
</div>
calling the function
var confimChange=getConfirm("Do You confirm?");
if(confimChange){
alert('perfect you confirmed')
}else{
alert('why didnt you confirmed??')
}
the problem is getAlert function is not returning true or false.
WORKING CODE:
if(listOfSelectedGroups.length> 0||
receiverGroupsList.length> 0||
receiverListCount > 0){
var confimChange=confirm("Message");
if(confimChange){
transactionIdOfTCKSMS='';
tckSmsTextName='';
tckSmsTextContent='';
previewOfMessage='';
previewOfMessageShow='';
populateColumnsForExcel();
resetReceiverList();
}else{
return false;
}
}
code piece after modifications & changes /not working
if(activeDiv == '#uploadDiv'){
if(listOfSelectedGroups.length> 0||
receiverListCount > 0){
getConfirm("message",function(result){
if(result){
transactionIdOfTCKSMS='';
tckSmsTextName='';
tckSmsTextContent='';
previewOfMessage='';
previewOfMessageShow='';
populateColumnsCombo("recipientColumnsDD");
resetReceiverList();
}else{
return false;
}
});
}
}
finaly i decided to use jquery ui. http://addyosmani.github.com/jquery-ui-bootstrap