I am using Bootbox to implement confirm dialog, the screenshot looks like:
The code snippet is as bellows:
1 2 3 4 5 6 7 | $scope.remove = function() { bootbox.confirm('是否確定要刪除', function(isConfirmed) { if(isConfirmed) { // .... } }); }; |
How can I change OK label to "確定"? And how do I change Cancel label to "取消"?
How-to
Here has sample code to fulfill this requirement:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | $scope.remove = function() { bootbox.confirm({ message:'是否確定要刪除', buttons: { confirm: { label: '確認' }, cancel: { label: '取消' } }, callback:function(isConfirmed) { if(isConfirmed) { // .... } } }); }; |
The confirmation dialog looks like:
No comments:
Post a Comment