opening a component to mount with spotlight click #928
-
Is there any other ways to go about interacting with components without utilizing the controlled version? For instance, I have one step which is a button. This button opens a tooltip which contains the next step. I would rather not use props like in the example (modalOpen) because I have multiple tours configured to a single Joyride. I tried utilizing spotlightClicks which opens the tooltip. However, the tour cannot recognize that the tooltip is now mounted so it ignores that step and goes onto the next one. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey @bphoebew |
Beta Was this translation helpful? Give feedback.
It means I think the only way to control the steps manually is with the controlled mode.
To make sure I understand correctly:
You have a step where the target is a button, and you enabled the spotlightClick for it so that you can click on the button.
The button opens a tooltip with the next step, but since the tooltip with the target isn't rendered when you click, it got skipped.
Is that it?