Hello Community,
I have the following:
<rich:dataTable var="process" ...
onRowMouseOver="#{rich:component('toolTipInfo')}.show(event)">
...
<rich:column>
<a4j:support event="onmouseover" onsubmit="updateToolTipInfo('#{process.state}')" />
</rich:column>
...
<rich:column>
<a4j:support event="onmouseover" onsubmit="updateToolTipInfo('#{process.time}')" />
</rich:column>
..
It works great for me, to edit the tooltip and show him. But each mouseover send an ajaxrequest but I don´t need one!
Rendered the column gets an onmouseover event like:
onmouseover"updateToolTipInfo('Delete');;A4J.AJAX.Submit('j_id61',event,{'similarityGroupingId':'j_id61:......} )"
But I don´t need the A4J.AJAX.Submit... i just need the first functioncall.
Anyone have an idea?