I have Bootstrap datepicker with default format mm/dd/yyyy, and I have select where I can change format from mm/dd/yyyy to dd/mm/yy
Ok I resolve this extending bootstra-datepicker.js
setFormat: function(format) { this.format = DPGlobal.parseFormat(format); }
And call that function
find('#options-date_format').on('change', function(){ $("#picker").datepicker('setFormat', newFormat); });