Pass form input from Modal Window back to the caller page has been created by Will Hoover (Jan 18, 2008).

Content:
...

chooserWindow.setWindowClosedCallback(new ModalWindow.WindowClosedCallback() {
	public void onClose(AjaxRequestTarget target) {

		yourTextField.setModelObject(chooserPanel.getYourValue());
		target.addComponent(yourTextField);

	}
});

...

Reply via email to