Hi users! Using wicket 1.4.17. I have a relatively large form. Inside this form, there's going to be a readonly text field that is actually populated by using a popup dialog, which opens a div with an ajax interface to navigate some entities in our system.
The thing is, inside the entity navigation form, there are drown down choices (selects) which need to refresh other drop down choices via ajax. The way I know how to do this is by using an AjaxFormSubmitBehavior on the drop down choices. The thing is, that this entity navigation form starts out invisible, becomes visible when clicking on an AjaxLink, and both Chrome and Firefox just don't put the form tag into the dom (despite it appearing in the wicket debug panel). I guess this is because html doesn't allow nested forms. So everything works up to the point where the AjaxFormSubmitBehavior on the selects fails to submit the form because the generated JS in the onchange handler in the selects looks for a form ID that doesn't exist (the navigation widget's form id, the form that wasn't actually put in the dom). Any ideas for how to make something like this work? Thanks Neil
