Hello, Volker!

<tc:messages/> are always empty. DebugPhaseListener prints this messages:

11.04.2007 8:49:45 org.apache.myfaces.tobago.util.DebugPhaseListener afterPhase
INFO: Total response time : 3770 milliseconds
11.04.2007 8:50:19 org.apache.myfaces.tobago.util.DebugPhaseListener afterPhase
INFO: Total response time : 1176 milliseconds
11.04.2007 8:50:34 org.apache.myfaces.tobago.util.DebugPhaseListener afterPhase
INFO: Total response time : 891 milliseconds
11.04.2007 8:50:45 org.apache.myfaces.tobago.util.DebugPhaseListener afterPhase
INFO: Total response time : 278 milliseconds

What should I do next? May be I'll send sources to You?
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


With respect,
   Boris

Reply via email to