Replies: 2 comments 4 replies
-
Further investigation of the API gives me the option The first step is attached to a button, which will load the next tourAnchor element into the DOM. I get a resume event, and also the anchorRegister event, but the tour doesn't resume. |
Beta Was this translation helpful? Give feedback.
-
Would having RxJs version be 6.6.0 be causing the problems do you think? Edit: Okay. I've updated the RxJs version and now when I click the anchor (button), the next step anchor gets highlighted but the step doesn't show. The tour seems to get stuck and broken. |
Beta Was this translation helpful? Give feedback.
-
I am trying to create a tour/tutorial for a reactive form, and I'd like to be able to disable the next button until a button is clicked (the button loads more of the form). I have the following two steps:
public static structuredNotesSteps: IStepOption[] = [ { anchorId: 'structured.action', title: 'Action Note', allowUserInitiatedNavigation: true, content: '... Click the button to create an action, and then press next</b>' }, { anchorId: 'structured.action.name', isAsync: true, asyncStepTimeout: 100, title: 'Action Name', content: 'more content' } ];
This works fine as long as the user actually clicks the button before clicking next on the step. However, if they simply press next and then click the button, the tour just ends (and complains about unregistered anchor). Is there a way to easily do this or will I have to perhaps make changes to the TourService itself?
Beta Was this translation helpful? Give feedback.
All reactions