Hi Boris,
the first thing to check, if a action is not invoked for unknown
reason, ensure there is no
validation/conversion error.
add a tc:messages tag somewhere to the page, or configure the DebugPhaseListener
and set loglevel to debug to ensure InvokeApplicationPhase is executed.
Regards,
Volker
2007/4/10, Boris Kovalenko <[EMAIL PROTECTED]>:
Hello!
What's wrong with this code? When clicking on tc:link no action
invoked and actionListener method not called also.
<tc:sheet id="sheet"
value="#{maSearchForm.mailAccounts}" var="row"
state="#{maSearchForm.sheetState}"
selectable="none"
rows="10"
showRowRange="left"
showPageRange="right"
columns="1*;1*;1*;1*"
>
<tc:column label="Фио" sortable="false">
<tc:link label="#{row.cn}"
action="[EMAIL PROTECTED]" actionListener="#{maSearchForm.selectEntry}"/>
</tc:column>
<tc:column label="Таб. номер" sortable="false"
align="right">
<tc:out value="#{row.employeeNumber}"/>
</tc:column>
<tc:column label="Отдел" sortable="false">
<tc:out value="#{row.ou}"/>
</tc:column>
<tc:column label="E-mail" sortable="false">
<tc:out value="#{row.mail}"/>
</tc:column>
</tc:sheet>
With respect,
Boris