-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modal Message Box Confirm HTML in Title #3491
Comments
Thanks for finding this... we should be able to get this fixed for the next rc release. |
As an interim workaround you can pass an array of vNodes like so: const title = this.$createElement(
'span',
{ class: ['text-info'] },
'Warning, This Is An HTML Title'
);
const message = 'Some message...;
const response = await this.$bvModal.msgBoxConfirm(message, {
title: [title], // must pass as an array
noFade: true,
}); The message can also be passed as an array of vNode(s). |
The vnode option is a great alternative, and will definitely be useful for more complex scenarios. |
It still wont be reactive (the vnodes are rendered only once, but does allow for more complex content. |
This was actually a bug with modal itself, not rendering the HTML correctly. |
Looks like it's rendering just fine to pass the vNodes, but still getting a prop type error with the code block below. Thanks for the tip... working fine for now.
Code Block: const message = 'You are not logged in. In order to edit, please login again to '
+ 'verify your access and then you will be redirected back to this page.';
const h = this.$createElement;
const vNodesTitle = h(
'div',
{ class: ['d-flex', 'align-items-center'] },
[
h(
'span',
{
'aria-hidden': ['true'],
class: ['esri-icon', 'esri-icon-notice-round', 'mr-2'],
style: { fontSize: '1.8rem' },
},
),
h(
'span',
'Warning, You Cannot Edit Right Now',
),
],
);
const response = await this.$bvModal.msgBoxConfirm(message, {
titleHtml: [vNodesTitle],
noFade: true,
okTitle: 'Login Now To Edit',
cancelTitle: 'Skip It, I Won\'t Edit Now',
}); |
Oops.. that should have been The |
Switched to |
Will have a fix for the prop type check warning in the PR as well. |
Message not support html style? |
@helioelias no, as mentioned in the docs: https://bootstrap-vue.js.org/docs/components/modal#message-box-notes
|
Thanks for adding the new beta modal plugin!! From what I am reading in the Docs, it is supported to pass the
titleHtml
property as an option to thethis.$bvModal.msgBoxConfirm()
service. However, it does not seem to be working to pass HTML to thetitleHtml
property as an option.Code Example
Expected behavior
Expected to see the title parsed as HTML with the
span
element and class. Actually seeing the HTML passed directly to the title, as seen in the attached screenshot.Versions
Libraries:
Environment:
The text was updated successfully, but these errors were encountered: