I use Wicket in my web application and I create popup using radio input as follows:
<input type="radio" wicket:id="foo" />
When I click on this radio button, a popup is comming to the page. How to open the popup in new page or tab? CTRL + mouse clikc doesn’t help. Right mouse click on the radio button doesn’t show possibility to do that too.
If by popup you mean ModalDialog: So you would have to open new window [1] via JavaScript and open page where you have this modal dialog configured to show during onLoad event.