You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use a customClass for the buttons like this:
this.$dialog
.confirm('Are you sure you want to delete the selected users.', {
okText: 'Delete',
cancelText: 'Cancel',
customClass: {
cancel: 'btn btn-light btn-sm'
}
})
.then(function(dialog) {
this.deleteSelectedUsers()
})
However I do not see the classes mentioned above applied to the cancel button. I am using bootstrap and these classes are part of it. I can manually change the class of cancel button through inspector and see the desired result , but the above code is not resulting in the above classes applied.
The text was updated successfully, but these errors were encountered:
I am trying to use a customClass for the buttons like this:
this.$dialog
.confirm('Are you sure you want to delete the selected users.', {
okText: 'Delete',
cancelText: 'Cancel',
customClass: {
cancel: 'btn btn-light btn-sm'
}
})
.then(function(dialog) {
this.deleteSelectedUsers()
})
However I do not see the classes mentioned above applied to the cancel button. I am using bootstrap and these classes are part of it. I can manually change the class of cancel button through inspector and see the desired result , but the above code is not resulting in the above classes applied.
@rachitpant , I am also having same issue & it is not working,
this changes available 'dev' branch not in master
master branch Custom Class variables are defined in constant but never used in the dialog window.
I am trying to use a customClass for the buttons like this:
However I do not see the classes mentioned above applied to the cancel button. I am using bootstrap and these classes are part of it. I can manually change the class of cancel button through inspector and see the desired result , but the above code is not resulting in the above classes applied.
The text was updated successfully, but these errors were encountered: