as it seems I have now the tag handler for the jsf:ajax tag on my back,
my main gripe are some details regarding the tag handler.
I mostly figured out most steps except one thing.
What I need is following
I have my tag handler being embedded in a composite component
<c:composite>
<f:ajax ... />
</c:composite>
The main issue here is that if I use the ajax tag I have to attach it to
an event in most cases it is onclick
which means if the composite has onClick defined I have to get a way
to get references to the embedded components which reference onClick
event handler defined in the composite interface.
Once I have references to the component or their respective tag handlers
I am set, then I can work my way in and attach the behavior as expected.
Can anyone point me towards a way to get there?
Werner