Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

up vote 2 down vote accepted

I think Bootstrap Confirm Modal is what you are looking for.

share|improve this answer
1  
addyosmani.github.com/jquery-ui-bootstrap is also good. :) thanks – Ayhan Nov 20 '12 at 19:23
Another one: bootboxjs.com :) – zentralmaschine Nov 21 '12 at 11:51

Your approach is wrong, it will execute kind of asynchronously so that it won't wait for the modal dialog to be closed before returning. Try something like this:

function getConfirm(confirmMessage,callback){
    confirmMessage = confirmMessage || '';

    $('#confirmbox').modal({show:true,
                            backdrop:false,
                            keyboard: false,
    });

    $('#confirmMessage').html(confirmMessage);
    $('#confirmFalse').click(function(){
        $('#confirmbox').modal('hide');
        if (callback) callback(false);

    });
    $('#confirmTrue').click(function(){
        $('#confirmbox').modal('hide');
        if (callback) callback(true);
    });
}  

getConfirm('Are you sure?',function(result) {
   // Do something with result...
});

Note however you only really need to initialize the modal once and hook the events once. I'd give the modal body and ID and simply change the content before showing.

You should also set backdrop to true, you want a confirmation to prevent the user from accessing the page until they confirm.

share|improve this answer
it work well but my function is not waiting for getConfirm function. – Ayhan Sep 1 '12 at 8:40

Aren't you missing a closing } in your first if ( confirmMessage == undefined){ ?

share|improve this answer
1  
i just miss copied :) – Ayhan Aug 31 '12 at 17:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.