Hi Telerik!
I have a radWizard I'm using, and one of the wizardSteps has a user control which uses several Bootstrap modals.
Everything works wonderfully on PC, Android, etc - except iPad. When the page is loaded on an iPad, the wizard changes to rendermode="mobile", that all works fine.
However, when I launch any Bootstrap modal whose code is within a wizardStep, the screen is disabled and the content is shown only within the radstep content container (see photo).
Again, this only happens on iPad - works fine on everything else.
My code is structured like this:
Page pseudocode:
<
radWizard
>
<
radStep
>
content
</
radStep
>
<
radStep
>
<
myUserControl
>
</
myUserControl
>
<
radStep
>
<
radStep
>
content
</
radStep
>
<
radWizard
>
myUserControl pseudocode:
<
myUserControl
>
<
button
>Show Bootstrap Modal</
button
>
<
div
id
=
'bootstrapModal'
class
=
'modal'
>
My modal content
</
div
>
</
myUserControl
>
iPad iOS version: 10.1
Thank you!