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