External f: ajax for a composite component

Is there a way to create a composite component that can receive the <f:ajax> from the outside?

I am creating an editableText composite input component and I want to show the end user the ability to add the <f:ajax> tag inside the input tag of my component. Is there a way to do this with a composite component? EditableValueHolder does not support <f:ajax> .

+4
source share
1 answer

I solved the problem a week ago. I did not write the answer here because I was full of work and I forgot about it. :)

Just need to use this tag:

 <c:clientBehavior name="blur" default="true" event="blur" targets="input" /> 

accordingly, with this IBM page , this tag is not documented, probably the reason is so difficult to find.

Thank you for attention.

+2
source

All Articles