for example:
I'd like to be in step 6 when initialized when the initial content does not need scrollbars, I tried to call .modal('refresh') after step 1, no effect. The problem is that if I want to be in step 6, I have to be through step 3. Any guide?
I tried to add 'scrolling' class as in 'ui scrolling modal', no difference.
Here is another related problem:
I consider to do .modal('refresh') when it is possible to do something with the scroll bars, but the modal may jump not as expected
I just found 1.0.0 release has been released, and tried it, the scroll bars never appears any more.
Modal has been significantly rewritten. Glad things worked out. Modals do have to be refreshed after the height changes, which unfortunately may happen frequently with an accordion.
Had same problem. as @jlukic suggested Try
$('.ui.accordion').accordion({onOpen: function(){$('.ui.modal').modal('refresh')}}); The modal will refresh and allow scrolling but I do not like the re-positioning effect.. I am not sure if there's a better workaround
Thanks!
Most helpful comment
Had same problem. as @jlukic suggested Try
$('.ui.accordion').accordion({onOpen: function(){$('.ui.modal').modal('refresh')}}); The modal will refresh and allow scrolling but I do not like the re-positioning effect.. I am not sure if there's a better workaround