tags:

views:

293

answers:

1

Hello

How is it possible to enclose ajax-related elements with h:form tags in a jsp file which I want to then a4j:include in another jsp file given the suggestion (EDIT 3) to fix another problem by enclosing my a4j:include in an h:form tag?

If my included code also has forms in that would suggest a nested form structure which will likely cause problems. A solution to how to go about this would be greatly appreciated.

I'm creating a webapp which uses ajax components so there is no page to page navigation as such as I want everything in the same 'window'.

Thanks

+1  A: 

You may use <a4j:region> instead of <x:form>. Nesting form is not recommended indeed.

Bozho
I'll try it first thing. Thanks as always.
Mark Lewis