Hello,
I am migrating my application from Wicket 1.4 to Wicket 7.
In my app, I have data table with 'Open' link to open modal window from
each row. The modal window consists a frameset -> frame to show a page with
some tabs on left frame and another page on the right frame.
Following is markup for frameset.
<frameset id="mainFrameset" class="groupFrame" cols="42%, 58%">
<frame class="groupFrame"
src="?wicket:bookmarkablePage=leftframe:PageWithTabPanels"/>
<frame class="groupFrame"
src="?wicket:bookmarkablePage=rightFrame:RightSidePage"/>
</frameset>
It is working fine in 1.4. But after migration, I see the modal window is
called repeatedly, and so the frameset is being nested with same left side
and right side pages.
Could anybody provide any suggestion/help?
Thanks,
-Mihir.