Help

Controls

PermLinkWikiLink

Built with Seam

You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.

Forum: Seam Users Forum ListTopic List
23. Apr 2008, 16:49 CET | Link

What have I do to propagate the conversation when I use the tag a4j:support? It seams that it is not automatically propagated...

Thanks a lot Luciano

2 Replies:
11. Nov 2008, 12:49 CET | Link

Has anyone else had a problem with a4j:support increasing the conversation number?

My code looks something like:

<a4j:outputPanel id="searchComponentRegion" styleClass="">
	#{conversation.id}
	<h:inputText
			id="searchComponentInputTextId"
			value="#{searchBean.searchString}">

			<a4j:support id="searchComponentITextSupport"
				action="#{searchBean['actionDoSearch']}"
				reRender="searchComponentRegion" event="onblur"
				focus="searchComponentSOMId">
			</a4j:support>
	</h:inputText>
</a4j:outputPanel>

Each time an ajax request is sent the displayed conversation.id increases by one.

Any ideas?

Thanks!

11. Nov 2008, 14:04 CET | Link

Nevermind it was my own fault.

I accidently left (and forgot about it) in pages.xml

<begin-conversation join="true" nested="true" flush-mode="manual" />

removing nested="true" fixed my problem.