bootbox confirm examples with localize




 




 function bAlert() {

            

        bootbox.alert('This is the default alert!');

        }


        function bconfirm() {

            var _locale = 'tr';

            //$('#locales').val();


            bootbox.confirm({

                message: "This confirm uses the selected locale. Were the labels what you expected?",

                locale: _locale,

                callback: function (result) {

                    console.log('This was logged in the callback: ' + result);

                }

            });

        }

            //.......................

            //bootbox.confirm({

            //    message: "This is a confirm with custom button text and color! Do you like it?",

            //    locale: _locale,

            //    buttons: {

            //        confirm: {

            //            label: 'Yes',

            //            className: 'btn-success'

            //        },

            //        cancel: {

            //            label: 'No',

            //            className: 'btn-danger'

            //        }

            //    },

            //    callback: function (result) {

            //        console.log('This was logged in the callback: ' + result + ' - locale =' + _locale);

            //    }

            //});

        //}


Yorumlar