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
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Description
In #1377 (comment), it was suggested to use
onbeforechange()
to change the style of individual steps. So I'm trying something like this:The problem is that
onbeforechange()
is called before the tooltip is displayed sodocument.querySelector()
returnsnull
for the first step:As you can see, when
onbeforechange()
is first called, I getnull
. It is only after I clicked "Next" that I got the tooltip.Expected Behavior
I would like a way to customize the style of the first step in the wizard to make it larger.
Actual Behavior
The first step can't be customized because
onbeforechange()
is called before any tooltip is rendered.Errors and Screenshots (optional)
This can be reproduced with the
example/callbacks/onbeforechange.html
example:Workaround
I guess something like #1266 could solve my issue. I don't know any other workaround.
The text was updated successfully, but these errors were encountered: