You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Zied Hamdi <ja...@gmail.com> on 2007/10/03 18:36:39 UTC

still the same exception

Hi,

I still have the same (assertion) exception but this time my link doesn't
work, and I can't go out of it :-(.

The code seems unable to find the component by its id even if I can see it
in the view tree...

The code that produces it works elsewhere, here no action and no action
listener is called :
(otherwise there's a minor visual bug in the richmond style: when a row is
selected, its color is the same as links so no text is visible anymore)

<tc:sheet

      xmlns="http://www.w3.org/1999/xhtml"

      xmlns:jsp="http://java.sun.com/JSP/Page"

      xmlns:tc="http://myfaces.apache.org/tobago/component"

      xmlns:tx="http://myfaces.apache.org/tobago/extension"

      xmlns:ui="http://java.sun.com/jsf/facelets"

      xmlns:h="http://java.sun.com/jsf/html"

      xmlns:f="http://java.sun.com/jsf/core"

      id="workTaskTable"

      columns="*;*"

      value="#{contractCtrl.planning}"

      var="intervention">



      <tc:column>

            <tc:link

                  id="workTaskDetailLink"

                  image="image/edit.PNG"

                  action="contractCtrl.editTaskCmd"

                  actionListener="contractCtrl.editTaskLsnr"/>

      </tc:column>



      <tc:column label="|Categorie">

            <tc:link

                  id="category"

                  label="#{intervention.category.name}"

                  action="contract" />

      </tc:column>



      <tc:column label="#{i18n.intervenant}">

            <tc:link

                  id="intervenant"

                  label="#{intervention.intervenant.firstName} #{
intervention.intervenant.lastName}"

                  action="contract" />

      </tc:column>



      <tc:column label="#{i18n.workStartDate}">

            <tx:date

                  id="workStartDate"

                  value="#{intervention.workStart}"

                  labelWidth="0px">

                  <f:convertDateTime pattern="dd.MM.yyyy" />

            </tx:date>

      </tc:column>



      <tc:column label="#{i18n.workStartTime}">

            <tc:time

                  id="workStart"

                  value="#{intervention.workStart}" />

      </tc:column>



      <tc:column label="#{i18n.workEndTime}">

            <tc:time

                  id="workEnd"

                  value="#{intervention.workEnd}" />

      </tc:column>



      <tc:column label="#{i18n.workEndDate}">

            <tx:date

                  id="workEndDate"

                  value="#{intervention.workEnd}"

                  labelWidth="0px">

                  <f:convertDateTime pattern="dd.MM.yyyy" />

            </tx:date>

      </tc:column>



      <tc:column label="#{i18n.note}">

            <tc:in value="#{intervention.note}" />

      </tc:column>

</tc:sheet>




18:23:05,453 INFO  [STDOUT] 2007-10-03 18:23:05,437 [http-127.0.0.1-8080-2]
DEBUG org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(156) -
actionId = 'page:taskTableSubview:workTaskTable:0:workTaskDetailLink'

18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
INFO  org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(176) -
command = "org.apache.myfaces.tobago.component.UILinkCommand@103d690"

*java.lang.Exception*

      at org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(*
UIPage.java:176*)

      at org.apache.myfaces.tobago.component.UIPage.processDecodes(*
UIPage.java:138*)

      at javax.faces.component.UIComponentBase.processDecodes(*
UIComponentBase.java:1001*)

      at javax.faces.component.UIViewRoot.processDecodes(*UIViewRoot.java
:493*)

      at org.apache.myfaces.tobago.component.UIViewRoot.processDecodes(*
UIViewRoot.java:183*)

      at
org.apache.myfaces.tobago.lifecycle.ApplyRequestValuesExecutor.execute(*
ApplyRequestValuesExecutor.java:78*)

      at org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.executePhase(*
TobagoLifecycle.java:102*)

      at org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.execute(*
TobagoLifecycle.java:72*)

      at javax.faces.webapp.FacesServlet.service(*FacesServlet.java:244*)

      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(*
ApplicationFilterChain.java:290*)

      at org.apache.catalina.core.ApplicationFilterChain.doFilter(*
ApplicationFilterChain.java:206*)

      at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(*
ExtensionsFilter.java:147*)

      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(*
ApplicationFilterChain.java:235*)

      at org.apache.catalina.core.ApplicationFilterChain.doFilter(*
ApplicationFilterChain.java:206*)

      at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(*
ReplyHeaderFilter.java:96*)

      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(*
ApplicationFilterChain.java:235*)

      at org.apache.catalina.core.ApplicationFilterChain.doFilter(*
ApplicationFilterChain.java:206*)

      at org.apache.catalina.core.StandardWrapperValve.invoke(*
StandardWrapperValve.java:230*)

      at org.apache.catalina.core.StandardContextValve.invoke(*
StandardContextValve.java:175*)

      at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(*
SecurityAssociationValve.java:179*)

      at org.apache.catalina.authenticator.AuthenticatorBase.invoke(*
AuthenticatorBase.java:433*)

      at org.jboss.web.tomcat.security.JaccContextValve.invoke(*
JaccContextValve.java:84*)

      at org.apache.catalina.core.StandardHostValve.invoke(*
StandardHostValve.java:128*)

      at org.apache.catalina.valves.ErrorReportValve.invoke(*
ErrorReportValve.java:104*)

      at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(*
CachedConnectionValve.java:157*)

      at org.apache.catalina.core.StandardEngineValve.invoke(*
StandardEngineValve.java:109*)

      at org.apache.catalina.connector.CoyoteAdapter.service(*
CoyoteAdapter.java:241*)

      at org.apache.coyote.http11.Http11Processor.process(*
Http11Processor.java:844*)

      at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(*
Http11Protocol.java:580*)

      at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(*JIoEndpoint.java
:447*)

      at java.lang.Thread.run(*Thread.java:619*)

18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(183) -
page:taskTableSubview:workTaskTable:workTaskDetailLink

18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(184) -
org.apache.myfaces.tobago.component.UILinkCommand@103d690

18:23:05,500 INFO  [STDOUT] 2007-10-03 18:23:05,500 [http-127.0.0.1-8080-2]
TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(185) -

org.apache.myfaces.tobago.component.UIViewRoot@fbc2ee null
/contract/contract.xhtml

  org.apache.myfaces.tobago.component.UIPage@ba97c3 Page page page

    org.apache.myfaces.tobago.component.UIPanel@418bc9 Panel j_id4
page:j_id4

      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1405f35GridLayout
j_id5 page:j_id5



      org.apache.myfaces.tobago.component.UICell@12a9b79 Panel j_id6
page:j_id6

      org.apache.myfaces.tobago.component.UICell@454034 Panel j_id8
page:j_id8

        javax.faces.component.UIPanel@7a160f MenuBar j_id10 page:j_id10

          org.apache.myfaces.tobago.component.UIMenu@13e54e1 null clients
page:clients

            org.apache.myfaces.tobago.component.UIMenuCommand@136af9aMenuCommand
j_id11 page:j_id11

          org.apache.myfaces.tobago.component.UIMenu@142bb92 null
intervenants page:intervenants

            org.apache.myfaces.tobago.component.UIMenuCommand@28ab69MenuCommand
j_id12 page:j_id12

          org.apache.myfaces.tobago.component.UIMenu@d9a60 null commercials
page:commercials

            org.apache.myfaces.tobago.component.UIMenuCommand@11245e4MenuCommand
j_id13 page:j_id13

          org.apache.myfaces.tobago.component.UIMenu@aa8aa5 null
configuration page:configuration

            org.apache.myfaces.tobago.component.UIMenuCommand@746450MenuCommand
j_id14 page:j_id14

            org.apache.myfaces.tobago.component.UIMenu@165da10 null j_id15
page:j_id15

              org.apache.myfaces.tobago.component.UIMenuCommand@1cf8dadMenuCommand
j_id16 page:j_id16

                "items" =
org.apache.myfaces.tobago.component.UISelectOne@15e7995
javax.faces.Menuj_id17 page:j_id17



                  javax.faces.component.UISelectItems@1804ff5 null j_id18
page:j_id18

      org.apache.myfaces.tobago.component.UICell@1018ece Panel j_id19
page:j_id19

        org.apache.myfaces.tobago.component.UIBox@146a823 Box j_id20
page:j_id20

          "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1c8a90d GridLayout j_id21
page:j_id21



          org.apache.myfaces.tobago.component.UIData@d2d2f1 Sheet j_id22
page:j_id22

            "selectionChange" =
org.apache.myfaces.tobago.component.UICommand@116ffed Command
navigationSelectionChange page:j_id22:navigationSelectionChange



            org.apache.myfaces.tobago.component.UIColumn@fc4825 null j_id23
page:j_id22:j_id23

              org.apache.myfaces.tobago.component.UIBox@e4860e Box j_id24
page:j_id22:j_id24

                "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@11d0ad2 GridLayout j_id25
page:j_id22:j_id25



                org.apache.myfaces.tobago.component.UIOutput@1b18eb3 Out
j_id26 page:j_id22:j_id26

                org.apache.myfaces.tobago.component.UIOutput@f8aa3 Out
j_id27 page:j_id22:j_id27

                org.apache.myfaces.tobago.component.UIOutput@56ebfb Out
j_id28 page:j_id22:j_id28

      org.apache.myfaces.tobago.component.UICell@9ed2e4 Panel pageContent
page:pageContent

        org.apache.myfaces.tobago.component.UIPanel@127a744 Panel j_id29
page:j_id29

          "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@56681bGridLayout
j_id30 page:j_id30



          org.apache.myfaces.tobago.component.UIPanel@ccd846 Panel
contractDetail page:contractDetail

            "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@8b168b GridLayout j_id31
page:j_id31



            org.apache.myfaces.tobago.component.UIPanel@1753445 Panel j_id32
page:j_id32

              "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1bab96e GridLayout j_id33
page:j_id33



              org.apache.myfaces.tobago.component.UICell@1e3f60e Panel
j_id34 page:j_id34


org.apache.myfaces.tobago.component.UIToolBar@12f4771ToolBar
contractCommands page:contractCommands


org.apache.myfaces.tobago.component.UICommand@fb87d1Button j_id35
page:j_id35


org.apache.myfaces.tobago.component.UICommand@191e550Button j_id36
page:j_id36

              org.apache.myfaces.tobago.component.UIPanel@1661834 Panel
j_id37 page:j_id37

                "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1bf30e7 GridLayout j_id38
page:j_id38



                org.apache.myfaces.tobago.component.UILabel@123b070 Label
j_id39 page:j_id39

                org.apache.myfaces.tobago.component.UIDateInput@14a86b Date
j_id40 page:j_id40


org.apache.myfaces.tobago.component.UIDatePicker@3d4350DatePicker
j_id41 page:j_id41

                  "pickerPopup" =
org.apache.myfaces.tobago.component.UIPopup@e4eda Popup j_id40_pickerpopup
page:j_id40_pickerpopup



                    org.apache.myfaces.tobago.component.UIPanel@15ad899 Box
box page:j_id40_pickerpopup:box

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1425dec GridLayout layout
page:j_id40_pickerpopup:layout




org.apache.myfaces.tobago.component.UIProgress@244c45Calendar calendar
page:j_id40_pickerpopup:calendar


org.apache.myfaces.tobago.component.UIPanel@10b5264Panel timePanel
page:j_id40_pickerpopup:timePanel

                        "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@4e604b GridLayout
timePanelLayout page:j_id40_pickerpopup:timePanelLayout




org.apache.myfaces.tobago.component.UIPanel@193e02fPanel cell1
page:j_id40_pickerpopup:cell1


org.apache.myfaces.tobago.component.UIInput@1635780Time time
page:j_id40_pickerpopup:time


org.apache.myfaces.tobago.component.UIPanel@105b710Panel cell2
page:j_id40_pickerpopup:cell2


org.apache.myfaces.tobago.component.UIPanel@35938ePanel buttonPanel
page:j_id40_pickerpopup:buttonPanel

                        "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@16a6027 GridLayout null
page:j_id40_pickerpopup:j_id135




org.apache.myfaces.tobago.component.UIButtonCommand@ceaf87 Button
okclosePopup page:j_id40_pickerpopup:okclosePopup


org.apache.myfaces.tobago.component.UIButtonCommand@165e220 Button
closePopup page:j_id40_pickerpopup:closePopup


org.apache.myfaces.tobago.component.UIHiddenInput@1e0b2faHidden
j_id40_pickerDimension page:j_id40_pickerDimension

                  javax.faces.component.UIGraphic@106692f Image
j_id40_pickerimage page:j_id40_pickerimage

              org.apache.myfaces.tobago.component.UIPanel@1e3a4c7 Panel
j_id42 page:j_id42

                "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@572cc4 GridLayout j_id43
page:j_id43



                org.apache.myfaces.tobago.component.UILabel@13c0665 Label
j_id44 page:j_id44

                org.apache.myfaces.tobago.component.UIDateInput@1c7e0e8 Date
j_id45 page:j_id45


org.apache.myfaces.tobago.component.UIDatePicker@17eae9eDatePicker
j_id46 page:j_id46

                  "pickerPopup" =
org.apache.myfaces.tobago.component.UIPopup@1fa1e67 Popup j_id45_pickerpopup
page:j_id45_pickerpopup



                    org.apache.myfaces.tobago.component.UIPanel@1e22950 Box
box page:j_id45_pickerpopup:box

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1067771 GridLayout layout
page:j_id45_pickerpopup:layout




org.apache.myfaces.tobago.component.UIProgress@18bce81Calendar
calendar page:j_id45_pickerpopup:calendar


org.apache.myfaces.tobago.component.UIPanel@1a296b8Panel timePanel
page:j_id45_pickerpopup:timePanel

                        "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1551d55 GridLayout
timePanelLayout page:j_id45_pickerpopup:timePanelLayout




org.apache.myfaces.tobago.component.UIPanel@f8e337Panel cell1
page:j_id45_pickerpopup:cell1


org.apache.myfaces.tobago.component.UIInput@d5447Time time
page:j_id45_pickerpopup:time


org.apache.myfaces.tobago.component.UIPanel@11841f8Panel cell2
page:j_id45_pickerpopup:cell2

                      org.apache.myfaces.tobago.

18:23:05,500 INFO  [STDOUT] component.UIPanel@1930fb4 Panel buttonPanel
page:j_id45_pickerpopup:buttonPanel

                        "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1ec04ab GridLayout null
page:j_id45_pickerpopup:j_id136




org.apache.myfaces.tobago.component.UIButtonCommand@267caa Button
okclosePopup page:j_id45_pickerpopup:okclosePopup


org.apache.myfaces.tobago.component.UIButtonCommand@c297a5 Button closePopup
page:j_id45_pickerpopup:closePopup


org.apache.myfaces.tobago.component.UIHiddenInput@171f7fbHidden
j_id45_pickerDimension page:j_id45_pickerDimension

                  javax.faces.component.UIGraphic@14f970c Image
j_id45_pickerimage page:j_id45_pickerimage

            org.apache.myfaces.tobago.component.UIBox@459fc2 Box
contractInfos page:contractInfos

              "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@fb880e GridLayout j_id47
page:j_id47



              org.apache.myfaces.tobago.component.UILabel@1a15f06 Label
j_id48 page:j_id48

              org.apache.myfaces.tobago.component.UILinkCommand@1658cfb Link
j_id49 page:j_id49

              org.apache.myfaces.tobago.component.UILabel@ad75b Label j_id50
page:j_id50

              org.apache.myfaces.tobago.component.UILinkCommand@1c0c692 Link
j_id51 page:j_id51

          org.apache.myfaces.tobago.component.UIBox@12cc218 Box
taskTablePanel page:taskTablePanel

            "toolBar" =
org.apache.myfaces.tobago.component.UIToolBar@17ae572 ToolBar j_id52
page:j_id52



              org.apache.myfaces.tobago.component.UICommand@16db297 Button
j_id53 page:j_id53

            javax.faces.component.UINamingContainer@e7ebba null
taskTableSubview page:taskTableSubview

              org.apache.myfaces.tobago.component.UIData@250a08 Sheet
workTaskTable page:taskTableSubview:workTaskTable

                org.apache.myfaces.tobago.component.UIColumn@1b5b004 null
j_id358 page:taskTableSubview:workTaskTable:j_id358


org.apache.myfaces.tobago.component.UILinkCommand@103d690Link
workTaskDetailLink
page:taskTableSubview:workTaskTable:workTaskDetailLink

                org.apache.myfaces.tobago.component.UIColumn@136da90 null
j_id359 page:taskTableSubview:workTaskTable:j_id359


org.apache.myfaces.tobago.component.UILinkCommand@473913Link category
page:taskTableSubview:workTaskTable:category

                org.apache.myfaces.tobago.component.UIColumn@1f43791 null
j_id360 page:taskTableSubview:workTaskTable:j_id360


org.apache.myfaces.tobago.component.UILinkCommand@6c4c10Link
intervenant page:taskTableSubview:workTaskTable:intervenant

                org.apache.myfaces.tobago.component.UIColumn@1f5c225 null
j_id361 page:taskTableSubview:workTaskTable:j_id361

                  org.apache.myfaces.tobago.component.UIPanel@19d1352 Panel
workStartDate page:taskTableSubview:workTaskTable:workStartDate

                    "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@15f9553 GridLayout j_id362
page:taskTableSubview:workTaskTable:j_id362



                    org.apache.myfaces.tobago.component.UILabel@44a5e1 Label
j_id363 page:taskTableSubview:workTaskTable:j_id363


org.apache.myfaces.tobago.component.UIDateInput@e68513Date j_id364
page:taskTableSubview:workTaskTable:j_id364


org.apache.myfaces.tobago.component.UIDatePicker@2acbe3DatePicker
j_id365 page:taskTableSubview:workTaskTable:j_id365

                      "pickerPopup" =
org.apache.myfaces.tobago.component.UIPopup@1afcc2c Popup
j_id364_pickerpopup page:taskTableSubview:workTaskTable:j_id364_pickerpopup




org.apache.myfaces.tobago.component.UIPanel@858bbaBox box
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:box

                          "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1989b13 GridLayout layout
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:layout




org.apache.myfaces.tobago.component.UIProgress@1ed0b93 Calendar calendar
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:calendar


org.apache.myfaces.tobago.component.UIPanel@192e709 Panel timePanel
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:timePanel

                            "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@17e238e GridLayout
timePanelLayout
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:timePanelLayout




org.apache.myfaces.tobago.component.UIPanel@5057fe Panel cell1
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:cell1


org.apache.myfaces.tobago.component.UIInput@c0e5e1 Time time
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:time


org.apache.myfaces.tobago.component.UIPanel@344c81 Panel cell2
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:cell2


org.apache.myfaces.tobago.component.UIPanel@18ad24a Panel buttonPanel
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:buttonPanel

                            "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@f4055f GridLayout null
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:j_id395




org.apache.myfaces.tobago.component.UIButtonCommand@8cd5cd Button
okclosePopup
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:okclosePopup


org.apache.myfaces.tobago.component.UIButtonCommand@28bd68 Button closePopup
page:taskTableSubview:workTaskTable:j_id364_pickerpopup:closePopup


org.apache.myfaces.tobago.component.UIHiddenInput@ab0028 Hidden
j_id364_pickerDimension
page:taskTableSubview:workTaskTable:j_id364_pickerDimension

                      javax.faces.component.UIGraphic@975b0e Image
j_id364_pickerimage page:taskTableSubview:workTaskTable:j_id364_pickerimage

                org.apache.myfaces.tobago.component.UIColumn@db09fa null
j_id366 page:taskTableSubview:workTaskTable:j_id366


org.apache.myfaces.tobago.component.UITimeInput@6c1838Time workStart
page:taskTableSubview:workTaskTable:workStart

                org.apache.myfaces.tobago.component.UIColumn@aa3910 null
j_id367 page:taskTableSubview:workTaskTable:j_id367


org.apache.myfaces.tobago.component.UITimeInput@1886ba1Time workEnd
page:taskTableSubview:workTaskTable:workEnd

                org.apache.myfaces.tobago.component.UIColumn@152327c null
j_id368 page:taskTableSubview:workTaskTable:j_id368

                  org.apache.myfaces.tobago.component.UIPanel@17072bf Panel
workEndDate page:taskTableSubview:workTaskTable:workEndDate

                    "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@17d8986 GridLayout j_id369
page:taskTableSubview:workTaskTable:j_id369



                    org.apache.myfaces.tobago.component.UILabel@cfbd2d Label
j_id370 page:taskTableSubview:workTaskTable:j_id370


org.apache.myfaces.tobago.component.UIDateInput@8d02e8Date j_id371
page:taskTableSubview:workTaskTable:j_id371


org.apache.myfaces.tobago.component.UIDatePicker@1b9e538DatePicker
j_id372 page:taskTableSubview:workTaskTable:j_id372

                      "pickerPopup" =
org.apache.myfaces.tobago.component.UIPopup@177d5f5 Popup
j_id371_pickerpopup page:taskTableSubview:workTaskTable:j_id371_pickerpopup




org.apache.myfaces.tobago.component.UIPanel@7fe54cBox box
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:box

                          "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@a71733 GridLayout layout
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:layout




org.apache.myfaces.tobago.component.UIProgress@1e45013 Calendar calendar
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:calendar


org.apache.myfaces.tobago.component.UIPanel@452c0fPanel timePanel
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:timePanel

                            "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@14fc557 GridLayout timeP

18:23:05,562 INFO  [STDOUT] anelLayout
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:timePanelLayout




org.apache.myfaces.tobago.component.UIPanel@25140d Panel cell1
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:cell1


org.apache.myfaces.tobago.component.UIInput@47898f Time time
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:time


org.apache.myfaces.tobago.component.UIPanel@983eb8 Panel cell2
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:cell2


org.apache.myfaces.tobago.component.UIPanel@13dac98 Panel buttonPanel
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:buttonPanel

                            "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@e3b13 GridLayout null
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:j_id396




org.apache.myfaces.tobago.component.UIButtonCommand@48867b Button
okclosePopup
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:okclosePopup


org.apache.myfaces.tobago.component.UIButtonCommand@17507d9 Button
closePopup
page:taskTableSubview:workTaskTable:j_id371_pickerpopup:closePopup


org.apache.myfaces.tobago.component.UIHiddenInput@564290 Hidden
j_id371_pickerDimension
page:taskTableSubview:workTaskTable:j_id371_pickerDimension

                      javax.faces.component.UIGraphic@12c17ce Image
j_id371_pickerimage page:taskTableSubview:workTaskTable:j_id371_pickerimage

                org.apache.myfaces.tobago.component.UIColumn@1cf031e null
j_id373 page:taskTableSubview:workTaskTable:j_id373

                  org.apache.myfaces.tobago.component.UIInput@1d5d6af In
j_id374 page:taskTableSubview:workTaskTable:j_id374

          org.apache.myfaces.tobago.component.UIPanel@19ced Panel j_id72
page:j_id72

          org.apache.myfaces.tobago.component.UIBox@1e5ab68 Box taskEditBox
page:taskEditBox

            org.apache.myfaces.tobago.component.UIPanel@15867fa Panel j_id73
page:j_id73

              "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@11270a0 GridLayout j_id74
page:j_id74



              org.apache.myfaces.tobago.component.UIToolBar@1a04a2a ToolBar
j_id75 page:j_id75

                org.apache.myfaces.tobago.component.UICommand@650c3b Button
j_id76 page:j_id76

                org.apache.myfaces.tobago.component.UICommand@6178a Button
j_id77 page:j_id77

                org.apache.myfaces.tobago.component.UICommand@1f3a295 Button
j_id78 page:j_id78

              org.apache.myfaces.tobago.component.UICell@37114f Panel j_id79
page:j_id79

                org.apache.myfaces.custom.schedule.HtmlSchedule@151786b
org.apache.myfaces.Schedule j_id80 page:j_id80

              org.apache.myfaces.tobago.component.UICell@1b8db54 Panel
j_id81 page:j_id81


org.apache.myfaces.tobago.component.UITabGroup@14774fdTabGroup
workTaskTabGroup page:workTaskTabGroup

                  org.apache.myfaces.tobago.component.UITab@51aa65 Tab
j_id82 page:j_id82

                    "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@189e7b8 GridLayout j_id83
page:j_id83



                    org.apache.myfaces.tobago.component.UIPanel@cc1102 Panel
workStartDate page:workStartDate

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1709ed1 GridLayout j_id84
page:j_id84




org.apache.myfaces.tobago.component.UILabel@cab23bLabel j_id85
page:j_id85


org.apache.myfaces.tobago.component.UIDateInput@17b6f14 Date j_id86
page:j_id86


org.apache.myfaces.tobago.component.UIDatePicker@b9cb6f DatePicker j_id87
page:j_id87

                        "pickerPopup" =
org.apache.myfaces.tobago.component.UIPopup@1dae4c8 Popup null page:j_id139




org.apache.myfaces.tobago.component.UIPanel@1e219e2 Box box page:j_id139:box

                            "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1116845 GridLayout layout
page:j_id139:layout




org.apache.myfaces.tobago.component.UIProgress@1d4cb2f Calendar calendar
page:j_id139:calendar


org.apache.myfaces.tobago.component.UIPanel@167a39b Panel timePanel
page:j_id139:timePanel

                              "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@126232b GridLayout
timePanelLayout page:j_id139:timePanelLayout




org.apache.myfaces.tobago.component.UIPanel@cef542 Panel cell1
page:j_id139:cell1


org.apache.myfaces.tobago.component.UIInput@147e045 Time time
page:j_id139:time


org.apache.myfaces.tobago.component.UIPanel@1d4d4b8 Panel cell2
page:j_id139:cell2


org.apache.myfaces.tobago.component.UIPanel@1d99597 Panel buttonPanel
page:j_id139:buttonPanel

                              "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1ebf294 GridLayout null
page:j_id139:j_id140




org.apache.myfaces.tobago.component.UIButtonCommand@1831114 Button
okclosePopup page:j_id139:okclosePopup


org.apache.myfaces.tobago.component.UIButtonCommand@1d67244 Button
closePopup page:j_id139:closePopup


org.apache.myfaces.tobago.component.UIHiddenInput@1e7f95c Hidden null
page:j_id141

                        javax.faces.component.UIGraphic@a4196e Image null
page:j_id142

                    org.apache.myfaces.tobago.component.UICell@181af25 Panel
workTimes page:workTimes

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@111b024 GridLayout j_id88
page:j_id88




org.apache.myfaces.tobago.component.UITimeInput@431f85Time workStart
page:workStart


org.apache.myfaces.tobago.component.UITimeInput@ca9378Time workEnd
page:workEnd


org.apache.myfaces.tobago.component.UIPanel@197d2abPanel workEndDate
page:workEndDate

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@87dc72 GridLayout j_id89
page:j_id89




org.apache.myfaces.tobago.component.UILabel@199c0a3Label j_id90
page:j_id90


org.apache.myfaces.tobago.component.UIDateInput@1363a43 Date j_id91
page:j_id91


org.apache.myfaces.tobago.component.UIDatePicker@12b1cec DatePicker j_id92
page:j_id92

                        "pickerPopup" =
org.apache.myfaces.tobago.component.UIPopup@177d2c2 Popup null page:j_id143




org.apache.myfaces.tobago.component.UIPanel@1add1c5 Box box page:j_id143:box

                            "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@a70c8f GridLayout layout
page:j_id143:layout




org.apache.myfaces.tobago.component.UIProgress@129a06b Calendar calendar
page:j_id143:calendar


org.apache.myfaces.tobago.component.UIPanel@1e2f653 Panel timePanel
page:j_id143:timePanel

                              "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@199ea11 GridLayout
timePanelLayout page:j_id143:timePanelLayout




org.apache.myfaces.tobago.component.UIPanel@1d61352 Panel cell1
page:j_id143:cell1


org.apache.myfaces.tobago.component.UIInput@18eae0f Time time
page:j_id143:time


org.apache.myfaces.tobago.component.UIPanel@457b62 Panel cell2
page:j_id143:cell2


org.apache.myfaces.tobago.component.UIPanel@1a777b0 Panel buttonPanel
page:j_id143:buttonPanel

                              "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1a2d512 GridLayout null
page:j_id143:j_id144




org.apache.myfaces.tobago.component.UIButtonCommand@152cf21 Button
okclosePopup page:j_id143:okclosePopup


org.apache.myfaces.tobago.component.UIButtonCommand@19c98d3 Button
closePopup page:j_id143:closePopup


org.apache.myfaces.tobago.component.UIHiddenInput@1f55f1d H

18:23:05,562 INFO  [STDOUT] idden null page:j_id145

                        javax.faces.component.UIGraphic@37a151 Image null
page:j_id146

                    org.apache.myfaces.tobago.component.UICell@3fd10d Panel
j_id93 page:j_id93

                    org.apache.myfaces.tobago.component.UICell@1b5ec35 Panel
intervenantCell page:intervenantCell

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@a6ad47 GridLayout j_id94
page:j_id94




org.apache.myfaces.tobago.component.UILinkCommand@ba17d4 Link j_id95
page:j_id95


org.apache.myfaces.tobago.component.UILinkCommand@17290e8 Link intervenant
page:intervenant


org.apache.myfaces.tobago.component.UICell@879d38Panel j_id96
page:j_id96


org.apache.myfaces.tobago.component.UIPanel@163013fPanel j_id97
page:j_id97


org.apache.myfaces.tobago.component.UIData@e6fbebSheet personData
page:personData


org.apache.myfaces.tobago.component.UIColumn@a5143a null j_id98
page:personData:j_id98


org.apache.myfaces.tobago.component.UILinkCommand@1d308e3 Link j_id99
page:personData:j_id99


org.apache.myfaces.tobago.component.UILinkCommand@1ec9f34 Link j_id100
page:personData:j_id100


org.apache.myfaces.tobago.component.UIColumn@1c834d6 null firstNameCol
page:personData:firstNameCol


org.apache.myfaces.tobago.component.UIOutput@104f57f Out firstName
page:personData:firstName


org.apache.myfaces.tobago.component.UIColumn@916e9a null lastNameCol
page:personData:lastNameCol


org.apache.myfaces.tobago.component.UIOutput@1f4564b Out lastName
page:personData:lastName


org.apache.myfaces.tobago.component.UIColumn@4d6f8c null zipCodeCol
page:personData:zipCodeCol


org.apache.myfaces.tobago.component.UIOutput@1d660e5 Out zipCode
page:personData:zipCode


org.apache.myfaces.tobago.component.UIColumn@1737913 null townCol
page:personData:townCol


org.apache.myfaces.tobago.component.UIOutput@120ba9 Out town
page:personData:town


org.apache.myfaces.tobago.component.UIColumn@bba415 null streetCol
page:personData:streetCol


org.apache.myfaces.tobago.component.UIOutput@111684e Out street
page:personData:street


org.apache.myfaces.tobago.component.UIColumn@1d7089e null j_id101
page:personData:j_id101


org.apache.myfaces.tobago.component.UILinkCommand@76ce6d Link deleteLink
page:personData:deleteLink

                    org.apache.myfaces.tobago.component.UICell@1ea6ce9 Panel
categoryCell page:categoryCell

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1944b85 GridLayout j_id102
page:j_id102




org.apache.myfaces.tobago.component.UILinkCommand@ea1f1d Link category
page:category


org.apache.myfaces.tobago.component.UILabel@a0b3a5Label j_id103
page:j_id103


org.apache.myfaces.tobago.component.UICell@72213ePanel j_id104
page:j_id104

                        org.apache.myfaces.tobago.component.UIBox@e475e1 Box
categorySelectionTree page:categorySelectionTree


org.apache.myfaces.tobago.component.UITreeOld@f721e8 TreeOld cateoriesTree
page:cateoriesTree

                            "treeNodeCommand" =
org.apache.myfaces.tobago.component.UICommand@d307dd Command j_id105
page:cateoriesTree:j_id105



                    org.apache.myfaces.tobago.component.UICell@a9562f Panel
j_id106 page:j_id106


org.apache.myfaces.tobago.component.UIPanel@1593869Panel j_id107
page:j_id107

                        "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@869d2b GridLayout j_id108
page:j_id108




org.apache.myfaces.tobago.component.UILabel@1b880aeLabel j_id109
page:j_id109


org.apache.myfaces.tobago.component.UIInput@84551TextArea j_id110
page:j_id110

                  org.apache.myfaces.tobago.component.UITab@ff024d Tab
j_id111 page:j_id111

                    "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1f02555 GridLayout j_id112
page:j_id112




org.apache.myfaces.tobago.component.UIPanel@12324c2Panel peridicity
page:peridicity

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@42610a GridLayout j_id113
page:j_id113




org.apache.myfaces.tobago.component.UIPanel@1f102bdPanel j_id114
page:j_id114

                        "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@1eaf052 GridLayout j_id115
page:j_id115




org.apache.myfaces.tobago.component.UILabel@147aaf0Label j_id116
page:j_id116


org.apache.myfaces.tobago.component.UIInput@27a57bIn j_id117
page:j_id117


org.apache.myfaces.tobago.component.UISelectOne@e16ad7SelectOneRadio
j_id118 page:j_id118

                        javax.faces.component.UISelectItems@12d5c2b null
j_id119 page:j_id119

                    org.apache.myfaces.tobago.component.UICell@fe319c Panel
j_id120 page:j_id120

                      "layout" =
org.apache.myfaces.tobago.component.UIGridLayout@6b0074 GridLayout j_id121
page:j_id121




org.apache.myfaces.tobago.component.UISelectMany@eae9f1 SelectManyCheckbox
checkboxes page:checkboxes

                        javax.faces.component.UISelectItems@a5061b null
j_id122 page:j_id122


org.apache.myfaces.tobago.component.UIProgress@33d6f1SelectReference
j_id123 page:j_id123

      org.apache.myfaces.tobago.component.UICell@1649260 Panel j_id124
page:j_id124

18:23:05,578 INFO  [STDOUT] 2007-10-03 18:23:05,562 [http-127.0.0.1-8080-2]
TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(193) -
org.apache.myfaces.tobago.component.UIPage@ba97c3

18:23:05,578 INFO  [STDOUT] 2007-10-03 18:23:05,578 [http-127.0.0.1-8080-2]
TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(194) -
page

18:23:05,578 INFO  [STDOUT] 2007-10-03 18:23:05,578 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.context.ResourceManagerImpl.getRendererClassName(372)
- patching renderer from javax.faces.MenuRenderer

18:23:05,593 INFO  [STDOUT] 2007-10-03 18:23:05,593 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.context.ResourceManagerImpl.getRendererClassName(374)
- patching renderer to   MenuRenderer

18:23:05,687 INFO  [STDOUT] 2007-10-03 18:23:05,687 [http-127.0.0.1-8080-2]
ERROR org.apache.myfaces.tobago.context.ResourceManagerImpl.getPaths(265) -
Path not found, and no fallback. Using empty string.

resourceDirs = '[skins, org/apache/myfaces/tobago/renderkit]' contentType =
'html' theme = 'richmond' browser = 'msie_7_0' subDir = 'tag' name =
'MenuRenderer' suffix = '' key = 'null'

18:23:05,687 INFO  [STDOUT] 2007-10-03 18:23:05,687 [http-127.0.0.1-8080-2]
ERROR org.apache.myfaces.tobago.context.ResourceManagerImpl.getRenderer(348)
- Don't find any RendererClass for MenuRenderer. Please check you
configuration.

18:23:05,687 INFO  [STDOUT] Currently 6 executers

18:23:05,703 INFO  [STDOUT] 2007-10-03 18:23:05,687 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.context.ResourceManagerImpl.getRendererClassName(372)
- patching renderer from javax.faces.MenuRenderer

18:23:05,703 INFO  [STDOUT] 2007-10-03 18:23:05,703 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.context.ResourceManagerImpl.getRendererClassName(374)
- patching renderer to   MenuRenderer

18:23:05,796 INFO  [STDOUT] 2007-10-03 18:23:05,796 [http-127.0.0.1-8080-2]
ERROR org.apache.myfaces.tobago.context.ResourceManagerImpl.getPaths(265) -
Path not found, and no fallback. Using empty string.

resourceDirs = '[skins, org/apache/myfaces/tobago/renderkit]' contentType =
'html' theme = 'richmond' browser = 'msie_7_0' subDir = 'tag' name =
'MenuRenderer' suffix = '' key = 'null'

18:23:05,796 INFO  [STDOUT] 2007-10-03 18:23:05,796 [http-127.0.0.1-8080-2]
ERROR org.apache.myfaces.tobago.context.ResourceManagerImpl.getRenderer(348)
- Don't find any RendererClass for MenuRenderer. Please check you
configuration.

18:23:05,812 INFO  [STDOUT] 2007-10-03 18:23:05,812 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(104)
- Unbalanced layout: rows.size()=1 !=
layoutTokens.length=2rowLayout='1*;1*;' (clientId='page:j_id21')

18:23:05,812 INFO  [STDOUT] 2007-10-03 18:23:05,812 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.tobago.util.LayoutInfo.<init>(63) - More tokens (2)
for layout than cells (1) found! Ignoring redundant tokens. Token string
was: 1*;1*; clientId='page:j_id21'

18:23:05,812 INFO  [STDOUT] Currently 6 executers

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(104)
- Unbalanced layout: rows.size()=4 !=
layoutTokens.length=5rowLayout='fixed;1*;10px;2*;100px;'
(clientId='page:j_id30')

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:contractDetail is Panel

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id32 is Panel

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id37 is Panel

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id42 is Panel

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(104)
- Unbalanced layout: rows.size()=2 != layoutTokens.length=1 rowLayout='1*;'
(clientId='page:j_id47')

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:contractInfos is Box

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:contractInfos is Box

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.tobago.util.LayoutInfo.<init>(63) - More tokens (5)
for layout than cells (4) found! Ignoring redundant tokens. Token string
was: fixed;1*;10px;hide;100px; clientId='page:j_id30'

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:contractDetail is Panel

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id32 is Panel

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id37 is Panel

18:23:05,843 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id42 is Panel

18:23:05,859 INFO  [STDOUT] 2007-10-03 18:23:05,843 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:contractInfos is Box

18:23:05,859 INFO  [STDOUT] 2007-10-03 18:23:05,859 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:contractInfos is Box

18:23:05,859 INFO  [STDOUT] 2007-10-03 18:23:05,859 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id37 is Panel

18:23:05,859 INFO  [STDOUT] 2007-10-03 18:23:05,859 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id42 is Panel

18:23:05,859 INFO  [STDOUT] 2007-10-03 18:23:05,859 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id37 is Panel

18:23:05,859 INFO  [STDOUT] 2007-10-03 18:23:05,859 [http-127.0.0.1-8080-2]
WARN
org.apache.myfaces.tobago.renderkit.html.scarborough.standard.tag.GridLayoutRenderer.calculateLayoutHeight(140)
- Unable to calculate Height for token '1*'! using 'fixed' ,
component:page:j_id42 is Panel

18:23:05,875 INFO  [STDOUT] 2007-10-03 18:23:05,859 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.tobago.component.UIData.ensureColumnWidthList(287)
- Count of columnLayout tokens in '*;*' != count of columns (8)! Using
default token '1*' for all columns

18:23:05,875 INFO  [STDOUT] 2007-10-03 18:23:05,875 [http-127.0.0.1-8080-2]
INFO  org.apache.myfaces.tobago.util.DebugPhaseListener.afterPhase(65) -
Total response time : 438 milliseconds

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 181. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 183. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 187. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 189. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 193. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 195. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 199. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 201. Surroundings: '\" href=\"#\" onfocus=\"tobago'.

18:23:05,890 INFO  [STDOUT] 2007-10-03 18:23:05,890 [http-127.0.0.1-8080-2]
WARN  org.apache.myfaces.renderkit.html.util.ReducedHTMLParser.parse(569) -
Invalid tag found: unexpected input while looking for attr name or '/>' at
line 205. Surroundings: '\" href=\"#\" onfocus=\"tobago'.





Regards,

Zied

Re: still the same exception

Posted by Zied Hamdi <ja...@gmail.com>.
Hi Bernd,

Do you mean all the implied pages? I'm sending you the file of the page
containing the link. If you need the whole structure let me know.

Regards,
Zied


2007/10/4, Bernd Bohmann <be...@atanion.com>:
>
> Hello Zied,
>
> can you send the page, please.
>
> Regards
>
> Bernd
>
> Zied Hamdi wrote:
> > Hi,
> >
> > The action doesn't execute, it's normal I didn't specify the action as
> an EL
> > (shame on me), but I still have the exception.
> >
> > Regards,
> > Zied
> >
> > 2007/10/3, Zied Hamdi <ja...@gmail.com>:
> >> Hi,
> >>
> >> I still have the same (assertion) exception but this time my link
> doesn't
> >> work, and I can't go out of it :-(.
> >>
> >> The code seems unable to find the component by its id even if I can see
> it
> >> in the view tree...
> >>
> >> The code that produces it works elsewhere, here no action and no action
> >> listener is called :
> >> (otherwise there's a minor visual bug in the richmond style: when a row
> is
> >> selected, its color is the same as links so no text is visible anymore)
> >>
> >> < tc:sheet
> >>
> >>       xmlns=" http://www.w3.org/1999/xhtml"
> >>
> >>       xmlns:jsp=" http://java.sun.com/JSP/Page"
> >>
> >>       xmlns:tc=" http://myfaces.apache.org/tobago/component"
> >>
> >>       xmlns:tx=" http://myfaces.apache.org/tobago/extension"
> >>
> >>       xmlns:ui=" http://java.sun.com/jsf/facelets"
> >>
> >>       xmlns:h=" http://java.sun.com/jsf/html"
> >>
> >>       xmlns:f=" http://java.sun.com/jsf/core"
> >>
> >>       id= "workTaskTable"
> >>
> >>       columns ="*;*"
> >>
> >>       value ="#{contractCtrl.planning}"
> >>
> >>       var ="intervention" >
> >>
> >>
> >>
> >>       < tc:column>
> >>
> >>             < tc:link
> >>
> >>                   id ="workTaskDetailLink"
> >>
> >>                   image ="image/edit. PNG"
> >>
> >>                   action ="contractCtrl.editTaskCmd"
> >>
> >>                   actionListener ="contractCtrl.editTaskLsnr" />
> >>
> >>       </ tc:column>
> >>
> >>
> >>
> >>       < tc:column label ="|Categorie" >
> >>
> >>             < tc:link
> >>
> >>                   id ="category"
> >>
> >>                   label ="#{intervention.category.name}"
> >>
> >>                   action ="contract" />
> >>
> >>       </ tc:column>
> >>
> >>
> >>
> >>       < tc:column label ="#{i18n.intervenant}" >
> >>
> >>             < tc:link
> >>
> >>                   id ="intervenant"
> >>
> >>                   label ="#{intervention.intervenant.firstName} #{
> >> intervention.intervenant.lastName}"
> >>
> >>                   action ="contract" />
> >>
> >>       </ tc:column>
> >>
> >>
> >>
> >>       < tc:column label ="#{i18n.workStartDate}" >
> >>
> >>             < tx:date
> >>
> >>                   id ="workStartDate"
> >>
> >>                   value ="#{intervention.workStart}"
> >>
> >>                   labelWidth ="0px" >
> >>
> >>                   < f:convertDateTime pattern ="dd.MM.yyyy" />
> >>
> >>             </ tx:date>
> >>
> >>       </ tc:column>
> >>
> >>
> >>
> >>       < tc:column label ="#{i18n.workStartTime}" >
> >>
> >>             < tc:time
> >>
> >>                   id ="workStart"
> >>
> >>                   value ="#{intervention.workStart}" />
> >>
> >>       </ tc:column>
> >>
> >>
> >>
> >>       < tc:column label ="#{i18n.workEndTime}" >
> >>
> >>             < tc:time
> >>
> >>                   id ="workEnd"
> >>
> >>                   value ="#{intervention.workEnd}" />
> >>
> >>       </ tc:column>
> >>
> >>
> >>
> >>       < tc:column label ="#{i18n.workEndDate}" >
> >>
> >>             < tx:date
> >>
> >>                   id ="workEndDate"
> >>
> >>                   value ="#{intervention.workEnd}"
> >>
> >>                   labelWidth ="0px" >
> >>
> >>                   < f:convertDateTime pattern ="dd.MM.yyyy" />
> >>
> >>             </ tx:date>
> >>
> >>       </ tc:column>
> >>
> >>
> >>
> >>       < tc:column label ="#{i18n.note}" >
> >>
> >>             < tc:in value ="#{intervention.note}" />
> >>
> >>       </ tc:column>
> >>
> >> </ tc:sheet>
> >>
> >>
> >>
> >>
> >> 18:23:05,453 INFO  [STDOUT] 2007-10-03 18:23:05,437 [
> http-127.0.0.1-8080-2]
> >> DEBUG org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(156) -
> >> actionId = 'page:taskTableSubview:workTaskTable:0:workTaskDetailLink'
> >>
> >> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [
> http-127.0.0.1-8080-2]
> >> INFO  org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(176)
> -
> >> command = "org.apache.myfaces.tobago.component.UILinkCommand@103d690 "
> >>
> >> *java.lang.Exception*
> >>
> >>       at org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(*
> >> UIPage.java:176*)
> >>
> >>       at org.apache.myfaces.tobago.component.UIPage.processDecodes (*
> >> UIPage.java:138*)
> >>
> >>       at javax.faces.component.UIComponentBase.processDecodes (*
> >> UIComponentBase.java:1001*)
> >>
> >>       at javax.faces.component.UIViewRoot.processDecodes (*
> UIViewRoot.java
> >> :493*)
> >>
> >>       at org.apache.myfaces.tobago.component.UIViewRoot.processDecodes(*
> >> UIViewRoot.java:183*)
> >>
> >>       at
> >> org.apache.myfaces.tobago.lifecycle.ApplyRequestValuesExecutor.execute
> (*
> >> ApplyRequestValuesExecutor.java :78*)
> >>
> >>       at
> org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.executePhase(
> >> *TobagoLifecycle.java :102*)
> >>
> >>       at org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.execute(*
> >> TobagoLifecycle.java :72*)
> >>
> >>       at javax.faces.webapp.FacesServlet.service(*FacesServlet.java:244*
> )
> >>
> >>       at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> >> *ApplicationFilterChain.java :290*)
> >>
> >>       at org.apache.catalina.core.ApplicationFilterChain.doFilter(*
> >> ApplicationFilterChain.java:206*)
> >>
> >>       at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter (*
> >> ExtensionsFilter.java:147*)
> >>
> >>       at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> >> *ApplicationFilterChain.java:235*)
> >>
> >>       at org.apache.catalina.core.ApplicationFilterChain.doFilter (*
> >> ApplicationFilterChain.java:206*)
> >>
> >>       at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter (*
> >> ReplyHeaderFilter.java:96*)
> >>
> >>       at
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> >> *ApplicationFilterChain.java:235*)
> >>
> >>       at org.apache.catalina.core.ApplicationFilterChain.doFilter (*
> >> ApplicationFilterChain.java:206*)
> >>
> >>       at org.apache.catalina.core.StandardWrapperValve.invoke (*
> >> StandardWrapperValve.java:230*)
> >>
> >>       at org.apache.catalina.core.StandardContextValve.invoke (*
> >> StandardContextValve.java:175*)
> >>
> >>       at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(*
> >> SecurityAssociationValve.java:179*)
> >>
> >>       at org.apache.catalina.authenticator.AuthenticatorBase.invoke (*
> >> AuthenticatorBase.java:433*)
> >>
> >>       at org.jboss.web.tomcat.security.JaccContextValve.invoke (*
> >> JaccContextValve.java:84*)
> >>
> >>       at org.apache.catalina.core.StandardHostValve.invoke (*
> >> StandardHostValve.java:128*)
> >>
> >>       at org.apache.catalina.valves.ErrorReportValve.invoke (*
> >> ErrorReportValve.java:104*)
> >>
> >>       at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(*
> >> CachedConnectionValve.java:157*)
> >>
> >>       at org.apache.catalina.core.StandardEngineValve.invoke (*
> >> StandardEngineValve.java:109*)
> >>
> >>       at org.apache.catalina.connector.CoyoteAdapter.service (*
> >> CoyoteAdapter.java:241*)
> >>
> >>       at org.apache.coyote.http11.Http11Processor.process (*
> >> Http11Processor.java:844*)
> >>
> >>       at
> >> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(*
> >> Http11Protocol.java:580*)
> >>
> >>       at org.apache.tomcat.util.net.JIoEndpoint$Worker.run (*
> >> JIoEndpoint.java:447*)
> >>
> >>       at java.lang.Thread.run (*Thread.java:619*)
> >>
> >> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [
> http-127.0.0.1-8080-2]
> >> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(183) -
> >> page:taskTableSubview:workTaskTable:workTaskDetailLink
> >>
> >> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [
> http-127.0.0.1-8080-2]
> >> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(184) -
> >> org.apache.myfaces.tobago.component.UILinkCommand@103d690
> >>
> >> 18:23:05,500 INFO  [STDOUT] 2007-10-03 18:23:05,500 [
> http-127.0.0.1-8080-2]
> >> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(185) -
> >>
> >>
> >> org.apache.myfaces.tobago.component.UIViewRoot@fbc2ee null
> >> /contract/contract.xhtml
> >>
> >>   org.apache.myfaces.tobago.component.UIPage@ba97c3 Page page page
> >>
> >>     org.apache.myfaces.tobago.component.UIPanel@418bc9 Panel j_id4
> >> page:j_id4
> >>
> >>       "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@1405f35GridLayout j_id5
> page:j_id5
> >>
> >>
> >>
> >>       org.apache.myfaces.tobago.component.UICell@12a9b79 Panel j_id6
> >> page:j_id6
> >>
> >>       org.apache.myfaces.tobago.component.UICell@454034 Panel j_id8
> >> page:j_id8
> >>
> >>         javax.faces.component.UIPanel@7a160f MenuBar j_id10 page:j_id10
> >>
> >>           org.apache.myfaces.tobago.component.UIMenu@13e54e1 null
> clients
> >> page:clients
> >>
> >>
> org.apache.myfaces.tobago.component.UIMenuCommand@136af9aMenuCommandj_id11 page:j_id11
> >>
> >>           org.apache.myfaces.tobago.component.UIMenu@142bb92 null
> >> intervenants page:intervenants
> >>
> >>
> org.apache.myfaces.tobago.component.UIMenuCommand@28ab69MenuCommand j_id12
> page:j_id12
> >>
> >>           org.apache.myfaces.tobago.component.UIMenu@d9a60 null
> >> commercials page:commercials
> >>
> >>
> org.apache.myfaces.tobago.component.UIMenuCommand@11245e4MenuCommandj_id13 page:j_id13
> >>
> >>           org.apache.myfaces.tobago.component.UIMenu@aa8aa5 null
> >> configuration page:configuration
> >>
> >>
> org.apache.myfaces.tobago.component.UIMenuCommand@746450MenuCommand j_id14
> page:j_id14
> >>
> >>             org.apache.myfaces.tobago.component.UIMenu@165da10 null
> j_id15
> >> page:j_id15
> >>
> >>
> org.apache.myfaces.tobago.component.UIMenuCommand@1cf8dadMenuCommandj_id16 page:j_id16
> >>
> >>                 "items" =
> >> org.apache.myfaces.tobago.component.UISelectOne@15e7995
> javax.faces.Menuj_id17 page:j_id17
> >>
> >>
> >>
> >>                   javax.faces.component.UISelectItems@1804ff5 null
> j_id18
> >> page:j_id18
> >>
> >>       org.apache.myfaces.tobago.component.UICell@1018ece Panel j_id19
> >> page:j_id19
> >>
> >>         org.apache.myfaces.tobago.component.UIBox@146a823 Box j_id20
> >> page:j_id20
> >>
> >>           "layout" =
> >> org.apache.myfaces.tobago.component.UIGridLayout@1c8a90d GridLayout
> j_id21
> >> page:j_id21
> >>
> >>
> >>
> >>           org.apache.myfaces.tobago.component.UIData@d2d2f1 Sheet
> j_id22
> >> page:j_id22
> >>
> >>             "selectionChange" =
> >> org.apache.myfaces.tobago.component.UICommand@116ffed Command
> >> navigationSelectionChange page:j_id22:navigationSelectionChange
> >>
> >>
> >>
> >>             org.apache.myfaces.tobago.component.UIColumn@fc4825 null
> >> j_id23 page:j_id22:j_id23
> >>
> >>               org.apache.myfaces.tobago.component.UIBox@e4860e Box
> j_id24
> >> page:j_id22:j_id24
> >>
> >>                 "layout" =
> >> org.apache.myfaces.tobago.component.UIGridLayout@11d0ad2 GridLayout
> j_id25
> >> page:j_id22:j_id25
> >>
> >>
> >>
> >>                 org.apache.myfaces.tobago.component.UIOutput@1b18eb3Out
> >> j_id26 page:j_id22:j_id26
> >>
> >>                 org.apache.myfaces.tobago.component.UIOutput@f8aa3 Out
> >> j_id27 page:j_id22:j_id27
> >>
> >>                 org.apache.myfaces.tobago.component.UIOutput@56ebfb Out
> >> j_id28 page:j_id22:j_id28
> >>
> >>       org.apache.myfaces.tobago.component.UICell@9ed2e4 Panel
> pageContent
> >> page:pageContent
> >>
> >>         org.apache.myfaces.tobago.component.UIPanel@127a744 Panel
> j_id29
> >> page:j_id29
> >>
> >>           "layout" =
> >> org.apache.myfaces.tobago.component.UIGridLayout@56681b GridLayout
> j_id30
> >> page:j_id30
> >>
> >>
> >>
> >>           org.apache.myfaces.tobago.component.UIPanel@ccd846 Panel
> >> contractDetail page:contractDetail
> >>
> >>             "layout" =
> >> org.apache.myfaces.tobago.component.UIGridLayout@8b168b GridLayout
> j_id31
> >> page:j_id31
> >>
> >>
> >>
> >>             org.apache.myfaces.tobago.component.UIPanel@1753445 Panel
> >> j_id32 page:j_id32
> >>
> >>               "layout" =
> >> org.apache.myfaces.tobago.component.UIGridLayout@1bab96e GridLayout
> j_id33
> >> page:j_id33
> >>
> >>
> >>
> >>               org.apache.myfaces.tobago.component.UICell@1e3f60e Panel
> >> j_id34 page:j_id34
> >>
> >>
> org.apache.myfaces.tobago.component.UIToolBar@12f4771ToolBarcontractCommands page:contractCommands
> >>
> >>
> org.apache.myfaces.tobago.component.UICommand@fb87d1Button j_id35
> page:j_id35
> >>
> >>
> org.apache.myfaces.tobago.component.UICommand@191e550Button j_id36
> page:j_id36
> >>
> >>               org.apache.myfaces.tobago.component.UIPanel@1661834 Panel
> >> j_id37 page:j_id37
> >>
> >>                 "layout" =
> >> org.apache.myfaces.tobago.component.UIGridLayout@1bf30e7 GridLayout
> j_id38
> >> page:j_id38
> >>
> >>
> >>
> >>                 org.apache.myfaces.tobago.component.UILabel@123b070Label
> >> j_id39 page:j_id39
> >>
> >>
> org.apache.myfaces.tobago.component.UIDateInput@14a86bDate j_id40
> page:j_id40
> >>
> >>
> org.apache.myfaces.tobago.component.UIDatePicker@3d4350DatePicker j_id41
> page:j_id41
> >>
> >>                   "pickerPopup" =
> >> org.apache.myfaces.tobago.component.UIPopup@e4eda Popup
> j_id40_pickerpopup
> >> page:j_id40_pickerpopup
> >>
> >>
> >>
> >>
> org.apache.myfaces.tobago.component.UIPanel@15ad899Box box
> page:j_id40_pickerpopup:box
> >>
> >>                       "layout" =
> >> org.apache.myfaces.tobago.component.UIGridLayout@1425dec GridLayout
> layout
> >> page:j_id40_pickerpopup:layout
> >>
> >>
> >>
> >>
> org.apache.myfaces.tobago.component.UIProgress@244c
> >> ...
> >>
> >> [Message tronqué]
> >>
> >
> >
> >
>



-- 
Zied Hamdi
zatreex.sourceforge.net

Re: still the same exception

Posted by Bernd Bohmann <be...@atanion.com>.
Hello Zied,

can you send the page, please.

Regards

Bernd

Zied Hamdi wrote:
> Hi,
> 
> The action doesn't execute, it's normal I didn't specify the action as an EL
> (shame on me), but I still have the exception.
> 
> Regards,
> Zied
> 
> 2007/10/3, Zied Hamdi <ja...@gmail.com>:
>> Hi,
>>
>> I still have the same (assertion) exception but this time my link doesn't
>> work, and I can't go out of it :-(.
>>
>> The code seems unable to find the component by its id even if I can see it
>> in the view tree...
>>
>> The code that produces it works elsewhere, here no action and no action
>> listener is called :
>> (otherwise there's a minor visual bug in the richmond style: when a row is
>> selected, its color is the same as links so no text is visible anymore)
>>
>> < tc:sheet
>>
>>       xmlns=" http://www.w3.org/1999/xhtml"
>>
>>       xmlns:jsp=" http://java.sun.com/JSP/Page"
>>
>>       xmlns:tc=" http://myfaces.apache.org/tobago/component"
>>
>>       xmlns:tx=" http://myfaces.apache.org/tobago/extension"
>>
>>       xmlns:ui=" http://java.sun.com/jsf/facelets"
>>
>>       xmlns:h=" http://java.sun.com/jsf/html"
>>
>>       xmlns:f=" http://java.sun.com/jsf/core"
>>
>>       id= "workTaskTable"
>>
>>       columns ="*;*"
>>
>>       value ="#{contractCtrl.planning}"
>>
>>       var ="intervention" >
>>
>>
>>
>>       < tc:column>
>>
>>             < tc:link
>>
>>                   id ="workTaskDetailLink"
>>
>>                   image ="image/edit. PNG"
>>
>>                   action ="contractCtrl.editTaskCmd"
>>
>>                   actionListener ="contractCtrl.editTaskLsnr" />
>>
>>       </ tc:column>
>>
>>
>>
>>       < tc:column label ="|Categorie" >
>>
>>             < tc:link
>>
>>                   id ="category"
>>
>>                   label ="#{intervention.category.name}"
>>
>>                   action ="contract" />
>>
>>       </ tc:column>
>>
>>
>>
>>       < tc:column label ="#{i18n.intervenant}" >
>>
>>             < tc:link
>>
>>                   id ="intervenant"
>>
>>                   label ="#{intervention.intervenant.firstName} #{
>> intervention.intervenant.lastName}"
>>
>>                   action ="contract" />
>>
>>       </ tc:column>
>>
>>
>>
>>       < tc:column label ="#{i18n.workStartDate}" >
>>
>>             < tx:date
>>
>>                   id ="workStartDate"
>>
>>                   value ="#{intervention.workStart}"
>>
>>                   labelWidth ="0px" >
>>
>>                   < f:convertDateTime pattern ="dd.MM.yyyy" />
>>
>>             </ tx:date>
>>
>>       </ tc:column>
>>
>>
>>
>>       < tc:column label ="#{i18n.workStartTime}" >
>>
>>             < tc:time
>>
>>                   id ="workStart"
>>
>>                   value ="#{intervention.workStart}" />
>>
>>       </ tc:column>
>>
>>
>>
>>       < tc:column label ="#{i18n.workEndTime}" >
>>
>>             < tc:time
>>
>>                   id ="workEnd"
>>
>>                   value ="#{intervention.workEnd}" />
>>
>>       </ tc:column>
>>
>>
>>
>>       < tc:column label ="#{i18n.workEndDate}" >
>>
>>             < tx:date
>>
>>                   id ="workEndDate"
>>
>>                   value ="#{intervention.workEnd}"
>>
>>                   labelWidth ="0px" >
>>
>>                   < f:convertDateTime pattern ="dd.MM.yyyy" />
>>
>>             </ tx:date>
>>
>>       </ tc:column>
>>
>>
>>
>>       < tc:column label ="#{i18n.note}" >
>>
>>             < tc:in value ="#{intervention.note}" />
>>
>>       </ tc:column>
>>
>> </ tc:sheet>
>>
>>
>>
>>
>> 18:23:05,453 INFO  [STDOUT] 2007-10-03 18:23:05,437 [http-127.0.0.1-8080-2]
>> DEBUG org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (156) -
>> actionId = 'page:taskTableSubview:workTaskTable:0:workTaskDetailLink'
>>
>> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
>> INFO  org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(176) -
>> command = "org.apache.myfaces.tobago.component.UILinkCommand@103d690 "
>>
>> *java.lang.Exception*
>>
>>       at org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (*
>> UIPage.java:176*)
>>
>>       at org.apache.myfaces.tobago.component.UIPage.processDecodes (*
>> UIPage.java:138*)
>>
>>       at javax.faces.component.UIComponentBase.processDecodes (*
>> UIComponentBase.java:1001*)
>>
>>       at javax.faces.component.UIViewRoot.processDecodes (*UIViewRoot.java
>> :493*)
>>
>>       at org.apache.myfaces.tobago.component.UIViewRoot.processDecodes (*
>> UIViewRoot.java:183*)
>>
>>       at
>> org.apache.myfaces.tobago.lifecycle.ApplyRequestValuesExecutor.execute(*
>> ApplyRequestValuesExecutor.java :78*)
>>
>>       at org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.executePhase(
>> *TobagoLifecycle.java :102*)
>>
>>       at org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.execute(*
>> TobagoLifecycle.java :72*)
>>
>>       at javax.faces.webapp.FacesServlet.service(*FacesServlet.java:244* )
>>
>>       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
>> *ApplicationFilterChain.java :290*)
>>
>>       at org.apache.catalina.core.ApplicationFilterChain.doFilter(*
>> ApplicationFilterChain.java:206*)
>>
>>       at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter (*
>> ExtensionsFilter.java:147*)
>>
>>       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
>> *ApplicationFilterChain.java:235*)
>>
>>       at org.apache.catalina.core.ApplicationFilterChain.doFilter (*
>> ApplicationFilterChain.java:206*)
>>
>>       at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter (*
>> ReplyHeaderFilter.java:96*)
>>
>>       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
>> *ApplicationFilterChain.java:235*)
>>
>>       at org.apache.catalina.core.ApplicationFilterChain.doFilter (*
>> ApplicationFilterChain.java:206*)
>>
>>       at org.apache.catalina.core.StandardWrapperValve.invoke (*
>> StandardWrapperValve.java:230*)
>>
>>       at org.apache.catalina.core.StandardContextValve.invoke (*
>> StandardContextValve.java:175*)
>>
>>       at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke (*
>> SecurityAssociationValve.java:179*)
>>
>>       at org.apache.catalina.authenticator.AuthenticatorBase.invoke (*
>> AuthenticatorBase.java:433*)
>>
>>       at org.jboss.web.tomcat.security.JaccContextValve.invoke (*
>> JaccContextValve.java:84*)
>>
>>       at org.apache.catalina.core.StandardHostValve.invoke (*
>> StandardHostValve.java:128*)
>>
>>       at org.apache.catalina.valves.ErrorReportValve.invoke (*
>> ErrorReportValve.java:104*)
>>
>>       at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke (*
>> CachedConnectionValve.java:157*)
>>
>>       at org.apache.catalina.core.StandardEngineValve.invoke (*
>> StandardEngineValve.java:109*)
>>
>>       at org.apache.catalina.connector.CoyoteAdapter.service (*
>> CoyoteAdapter.java:241*)
>>
>>       at org.apache.coyote.http11.Http11Processor.process (*
>> Http11Processor.java:844*)
>>
>>       at
>> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process (*
>> Http11Protocol.java:580*)
>>
>>       at org.apache.tomcat.util.net.JIoEndpoint$Worker.run (*
>> JIoEndpoint.java:447*)
>>
>>       at java.lang.Thread.run (*Thread.java:619*)
>>
>> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
>> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (183) -
>> page:taskTableSubview:workTaskTable:workTaskDetailLink
>>
>> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
>> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (184) -
>> org.apache.myfaces.tobago.component.UILinkCommand@103d690
>>
>> 18:23:05,500 INFO  [STDOUT] 2007-10-03 18:23:05,500 [http-127.0.0.1-8080-2]
>> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (185) -
>>
>>
>> org.apache.myfaces.tobago.component.UIViewRoot@fbc2ee null
>> /contract/contract.xhtml
>>
>>   org.apache.myfaces.tobago.component.UIPage@ba97c3 Page page page
>>
>>     org.apache.myfaces.tobago.component.UIPanel@418bc9 Panel j_id4
>> page:j_id4
>>
>>       "layout" = org.apache.myfaces.tobago.component.UIGridLayout@1405f35GridLayout j_id5 page:j_id5
>>
>>
>>
>>       org.apache.myfaces.tobago.component.UICell@12a9b79 Panel j_id6
>> page:j_id6
>>
>>       org.apache.myfaces.tobago.component.UICell@454034 Panel j_id8
>> page:j_id8
>>
>>         javax.faces.component.UIPanel@7a160f MenuBar j_id10 page:j_id10
>>
>>           org.apache.myfaces.tobago.component.UIMenu@13e54e1 null clients
>> page:clients
>>
>>             org.apache.myfaces.tobago.component.UIMenuCommand@136af9aMenuCommand j_id11 page:j_id11
>>
>>           org.apache.myfaces.tobago.component.UIMenu@142bb92 null
>> intervenants page:intervenants
>>
>>             org.apache.myfaces.tobago.component.UIMenuCommand@28ab69MenuCommand j_id12 page:j_id12
>>
>>           org.apache.myfaces.tobago.component.UIMenu@d9a60 null
>> commercials page:commercials
>>
>>             org.apache.myfaces.tobago.component.UIMenuCommand@11245e4MenuCommand j_id13 page:j_id13
>>
>>           org.apache.myfaces.tobago.component.UIMenu@aa8aa5 null
>> configuration page:configuration
>>
>>             org.apache.myfaces.tobago.component.UIMenuCommand@746450MenuCommand j_id14 page:j_id14
>>
>>             org.apache.myfaces.tobago.component.UIMenu@165da10 null j_id15
>> page:j_id15
>>
>>               org.apache.myfaces.tobago.component.UIMenuCommand@1cf8dadMenuCommand j_id16 page:j_id16
>>
>>                 "items" =
>> org.apache.myfaces.tobago.component.UISelectOne@15e7995 javax.faces.Menuj_id17 page:j_id17
>>
>>
>>
>>                   javax.faces.component.UISelectItems@1804ff5 null j_id18
>> page:j_id18
>>
>>       org.apache.myfaces.tobago.component.UICell@1018ece Panel j_id19
>> page:j_id19
>>
>>         org.apache.myfaces.tobago.component.UIBox@146a823 Box j_id20
>> page:j_id20
>>
>>           "layout" =
>> org.apache.myfaces.tobago.component.UIGridLayout@1c8a90d GridLayout j_id21
>> page:j_id21
>>
>>
>>
>>           org.apache.myfaces.tobago.component.UIData@d2d2f1 Sheet j_id22
>> page:j_id22
>>
>>             "selectionChange" =
>> org.apache.myfaces.tobago.component.UICommand@116ffed Command
>> navigationSelectionChange page:j_id22:navigationSelectionChange
>>
>>
>>
>>             org.apache.myfaces.tobago.component.UIColumn@fc4825 null
>> j_id23 page:j_id22:j_id23
>>
>>               org.apache.myfaces.tobago.component.UIBox@e4860e Box j_id24
>> page:j_id22:j_id24
>>
>>                 "layout" =
>> org.apache.myfaces.tobago.component.UIGridLayout@11d0ad2 GridLayout j_id25
>> page:j_id22:j_id25
>>
>>
>>
>>                 org.apache.myfaces.tobago.component.UIOutput@1b18eb3 Out
>> j_id26 page:j_id22:j_id26
>>
>>                 org.apache.myfaces.tobago.component.UIOutput@f8aa3 Out
>> j_id27 page:j_id22:j_id27
>>
>>                 org.apache.myfaces.tobago.component.UIOutput@56ebfb Out
>> j_id28 page:j_id22:j_id28
>>
>>       org.apache.myfaces.tobago.component.UICell@9ed2e4 Panel pageContent
>> page:pageContent
>>
>>         org.apache.myfaces.tobago.component.UIPanel@127a744 Panel j_id29
>> page:j_id29
>>
>>           "layout" =
>> org.apache.myfaces.tobago.component.UIGridLayout@56681b GridLayout j_id30
>> page:j_id30
>>
>>
>>
>>           org.apache.myfaces.tobago.component.UIPanel@ccd846 Panel
>> contractDetail page:contractDetail
>>
>>             "layout" =
>> org.apache.myfaces.tobago.component.UIGridLayout@8b168b GridLayout j_id31
>> page:j_id31
>>
>>
>>
>>             org.apache.myfaces.tobago.component.UIPanel@1753445 Panel
>> j_id32 page:j_id32
>>
>>               "layout" =
>> org.apache.myfaces.tobago.component.UIGridLayout@1bab96e GridLayout j_id33
>> page:j_id33
>>
>>
>>
>>               org.apache.myfaces.tobago.component.UICell@1e3f60e Panel
>> j_id34 page:j_id34
>>
>>                 org.apache.myfaces.tobago.component.UIToolBar@12f4771ToolBar contractCommands page:contractCommands
>>
>>                   org.apache.myfaces.tobago.component.UICommand@fb87d1Button j_id35 page:j_id35
>>
>>                   org.apache.myfaces.tobago.component.UICommand@191e550Button j_id36 page:j_id36
>>
>>               org.apache.myfaces.tobago.component.UIPanel@1661834 Panel
>> j_id37 page:j_id37
>>
>>                 "layout" =
>> org.apache.myfaces.tobago.component.UIGridLayout@1bf30e7 GridLayout j_id38
>> page:j_id38
>>
>>
>>
>>                 org.apache.myfaces.tobago.component.UILabel@123b070 Label
>> j_id39 page:j_id39
>>
>>                 org.apache.myfaces.tobago.component.UIDateInput@14a86bDate j_id40 page:j_id40
>>
>>                 org.apache.myfaces.tobago.component.UIDatePicker@3d4350DatePicker j_id41 page:j_id41
>>
>>                   "pickerPopup" =
>> org.apache.myfaces.tobago.component.UIPopup@e4eda Popup j_id40_pickerpopup
>> page:j_id40_pickerpopup
>>
>>
>>
>>                     org.apache.myfaces.tobago.component.UIPanel@15ad899Box box page:j_id40_pickerpopup:box
>>
>>                       "layout" =
>> org.apache.myfaces.tobago.component.UIGridLayout@1425dec GridLayout layout
>> page:j_id40_pickerpopup:layout
>>
>>
>>
>>                       org.apache.myfaces.tobago.component.UIProgress@244c
>> ...
>>
>> [Message tronqué]
>>
> 
> 
> 

Re: still the same exception

Posted by Zied Hamdi <ja...@gmail.com>.
Hi,

The action doesn't execute, it's normal I didn't specify the action as an EL
(shame on me), but I still have the exception.

Regards,
Zied

2007/10/3, Zied Hamdi <ja...@gmail.com>:
>
> Hi,
>
> I still have the same (assertion) exception but this time my link doesn't
> work, and I can't go out of it :-(.
>
> The code seems unable to find the component by its id even if I can see it
> in the view tree...
>
> The code that produces it works elsewhere, here no action and no action
> listener is called :
> (otherwise there's a minor visual bug in the richmond style: when a row is
> selected, its color is the same as links so no text is visible anymore)
>
> < tc:sheet
>
>       xmlns=" http://www.w3.org/1999/xhtml"
>
>       xmlns:jsp=" http://java.sun.com/JSP/Page"
>
>       xmlns:tc=" http://myfaces.apache.org/tobago/component"
>
>       xmlns:tx=" http://myfaces.apache.org/tobago/extension"
>
>       xmlns:ui=" http://java.sun.com/jsf/facelets"
>
>       xmlns:h=" http://java.sun.com/jsf/html"
>
>       xmlns:f=" http://java.sun.com/jsf/core"
>
>       id= "workTaskTable"
>
>       columns ="*;*"
>
>       value ="#{contractCtrl.planning}"
>
>       var ="intervention" >
>
>
>
>       < tc:column>
>
>             < tc:link
>
>                   id ="workTaskDetailLink"
>
>                   image ="image/edit. PNG"
>
>                   action ="contractCtrl.editTaskCmd"
>
>                   actionListener ="contractCtrl.editTaskLsnr" />
>
>       </ tc:column>
>
>
>
>       < tc:column label ="|Categorie" >
>
>             < tc:link
>
>                   id ="category"
>
>                   label ="#{intervention.category.name}"
>
>                   action ="contract" />
>
>       </ tc:column>
>
>
>
>       < tc:column label ="#{i18n.intervenant}" >
>
>             < tc:link
>
>                   id ="intervenant"
>
>                   label ="#{intervention.intervenant.firstName} #{
> intervention.intervenant.lastName}"
>
>                   action ="contract" />
>
>       </ tc:column>
>
>
>
>       < tc:column label ="#{i18n.workStartDate}" >
>
>             < tx:date
>
>                   id ="workStartDate"
>
>                   value ="#{intervention.workStart}"
>
>                   labelWidth ="0px" >
>
>                   < f:convertDateTime pattern ="dd.MM.yyyy" />
>
>             </ tx:date>
>
>       </ tc:column>
>
>
>
>       < tc:column label ="#{i18n.workStartTime}" >
>
>             < tc:time
>
>                   id ="workStart"
>
>                   value ="#{intervention.workStart}" />
>
>       </ tc:column>
>
>
>
>       < tc:column label ="#{i18n.workEndTime}" >
>
>             < tc:time
>
>                   id ="workEnd"
>
>                   value ="#{intervention.workEnd}" />
>
>       </ tc:column>
>
>
>
>       < tc:column label ="#{i18n.workEndDate}" >
>
>             < tx:date
>
>                   id ="workEndDate"
>
>                   value ="#{intervention.workEnd}"
>
>                   labelWidth ="0px" >
>
>                   < f:convertDateTime pattern ="dd.MM.yyyy" />
>
>             </ tx:date>
>
>       </ tc:column>
>
>
>
>       < tc:column label ="#{i18n.note}" >
>
>             < tc:in value ="#{intervention.note}" />
>
>       </ tc:column>
>
> </ tc:sheet>
>
>
>
>
> 18:23:05,453 INFO  [STDOUT] 2007-10-03 18:23:05,437 [http-127.0.0.1-8080-2]
> DEBUG org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (156) -
> actionId = 'page:taskTableSubview:workTaskTable:0:workTaskDetailLink'
>
> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
> INFO  org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(176) -
> command = "org.apache.myfaces.tobago.component.UILinkCommand@103d690 "
>
> *java.lang.Exception*
>
>       at org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (*
> UIPage.java:176*)
>
>       at org.apache.myfaces.tobago.component.UIPage.processDecodes (*
> UIPage.java:138*)
>
>       at javax.faces.component.UIComponentBase.processDecodes (*
> UIComponentBase.java:1001*)
>
>       at javax.faces.component.UIViewRoot.processDecodes (*UIViewRoot.java
> :493*)
>
>       at org.apache.myfaces.tobago.component.UIViewRoot.processDecodes (*
> UIViewRoot.java:183*)
>
>       at
> org.apache.myfaces.tobago.lifecycle.ApplyRequestValuesExecutor.execute(*
> ApplyRequestValuesExecutor.java :78*)
>
>       at org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.executePhase(
> *TobagoLifecycle.java :102*)
>
>       at org.apache.myfaces.tobago.lifecycle.TobagoLifecycle.execute(*
> TobagoLifecycle.java :72*)
>
>       at javax.faces.webapp.FacesServlet.service(*FacesServlet.java:244* )
>
>       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> *ApplicationFilterChain.java :290*)
>
>       at org.apache.catalina.core.ApplicationFilterChain.doFilter(*
> ApplicationFilterChain.java:206*)
>
>       at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter (*
> ExtensionsFilter.java:147*)
>
>       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> *ApplicationFilterChain.java:235*)
>
>       at org.apache.catalina.core.ApplicationFilterChain.doFilter (*
> ApplicationFilterChain.java:206*)
>
>       at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter (*
> ReplyHeaderFilter.java:96*)
>
>       at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(
> *ApplicationFilterChain.java:235*)
>
>       at org.apache.catalina.core.ApplicationFilterChain.doFilter (*
> ApplicationFilterChain.java:206*)
>
>       at org.apache.catalina.core.StandardWrapperValve.invoke (*
> StandardWrapperValve.java:230*)
>
>       at org.apache.catalina.core.StandardContextValve.invoke (*
> StandardContextValve.java:175*)
>
>       at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke (*
> SecurityAssociationValve.java:179*)
>
>       at org.apache.catalina.authenticator.AuthenticatorBase.invoke (*
> AuthenticatorBase.java:433*)
>
>       at org.jboss.web.tomcat.security.JaccContextValve.invoke (*
> JaccContextValve.java:84*)
>
>       at org.apache.catalina.core.StandardHostValve.invoke (*
> StandardHostValve.java:128*)
>
>       at org.apache.catalina.valves.ErrorReportValve.invoke (*
> ErrorReportValve.java:104*)
>
>       at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke (*
> CachedConnectionValve.java:157*)
>
>       at org.apache.catalina.core.StandardEngineValve.invoke (*
> StandardEngineValve.java:109*)
>
>       at org.apache.catalina.connector.CoyoteAdapter.service (*
> CoyoteAdapter.java:241*)
>
>       at org.apache.coyote.http11.Http11Processor.process (*
> Http11Processor.java:844*)
>
>       at
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process (*
> Http11Protocol.java:580*)
>
>       at org.apache.tomcat.util.net.JIoEndpoint$Worker.run (*
> JIoEndpoint.java:447*)
>
>       at java.lang.Thread.run (*Thread.java:619*)
>
> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (183) -
> page:taskTableSubview:workTaskTable:workTaskDetailLink
>
> 18:23:05,468 INFO  [STDOUT] 2007-10-03 18:23:05,468 [http-127.0.0.1-8080-2]
> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (184) -
> org.apache.myfaces.tobago.component.UILinkCommand@103d690
>
> 18:23:05,500 INFO  [STDOUT] 2007-10-03 18:23:05,500 [http-127.0.0.1-8080-2]
> TRACE org.apache.myfaces.tobago.component.UIPage.markSubmittedForm (185) -
>
>
> org.apache.myfaces.tobago.component.UIViewRoot@fbc2ee null
> /contract/contract.xhtml
>
>   org.apache.myfaces.tobago.component.UIPage@ba97c3 Page page page
>
>     org.apache.myfaces.tobago.component.UIPanel@418bc9 Panel j_id4
> page:j_id4
>
>       "layout" = org.apache.myfaces.tobago.component.UIGridLayout@1405f35GridLayout j_id5 page:j_id5
>
>
>
>       org.apache.myfaces.tobago.component.UICell@12a9b79 Panel j_id6
> page:j_id6
>
>       org.apache.myfaces.tobago.component.UICell@454034 Panel j_id8
> page:j_id8
>
>         javax.faces.component.UIPanel@7a160f MenuBar j_id10 page:j_id10
>
>           org.apache.myfaces.tobago.component.UIMenu@13e54e1 null clients
> page:clients
>
>             org.apache.myfaces.tobago.component.UIMenuCommand@136af9aMenuCommand j_id11 page:j_id11
>
>           org.apache.myfaces.tobago.component.UIMenu@142bb92 null
> intervenants page:intervenants
>
>             org.apache.myfaces.tobago.component.UIMenuCommand@28ab69MenuCommand j_id12 page:j_id12
>
>           org.apache.myfaces.tobago.component.UIMenu@d9a60 null
> commercials page:commercials
>
>             org.apache.myfaces.tobago.component.UIMenuCommand@11245e4MenuCommand j_id13 page:j_id13
>
>           org.apache.myfaces.tobago.component.UIMenu@aa8aa5 null
> configuration page:configuration
>
>             org.apache.myfaces.tobago.component.UIMenuCommand@746450MenuCommand j_id14 page:j_id14
>
>             org.apache.myfaces.tobago.component.UIMenu@165da10 null j_id15
> page:j_id15
>
>               org.apache.myfaces.tobago.component.UIMenuCommand@1cf8dadMenuCommand j_id16 page:j_id16
>
>                 "items" =
> org.apache.myfaces.tobago.component.UISelectOne@15e7995 javax.faces.Menuj_id17 page:j_id17
>
>
>
>                   javax.faces.component.UISelectItems@1804ff5 null j_id18
> page:j_id18
>
>       org.apache.myfaces.tobago.component.UICell@1018ece Panel j_id19
> page:j_id19
>
>         org.apache.myfaces.tobago.component.UIBox@146a823 Box j_id20
> page:j_id20
>
>           "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@1c8a90d GridLayout j_id21
> page:j_id21
>
>
>
>           org.apache.myfaces.tobago.component.UIData@d2d2f1 Sheet j_id22
> page:j_id22
>
>             "selectionChange" =
> org.apache.myfaces.tobago.component.UICommand@116ffed Command
> navigationSelectionChange page:j_id22:navigationSelectionChange
>
>
>
>             org.apache.myfaces.tobago.component.UIColumn@fc4825 null
> j_id23 page:j_id22:j_id23
>
>               org.apache.myfaces.tobago.component.UIBox@e4860e Box j_id24
> page:j_id22:j_id24
>
>                 "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@11d0ad2 GridLayout j_id25
> page:j_id22:j_id25
>
>
>
>                 org.apache.myfaces.tobago.component.UIOutput@1b18eb3 Out
> j_id26 page:j_id22:j_id26
>
>                 org.apache.myfaces.tobago.component.UIOutput@f8aa3 Out
> j_id27 page:j_id22:j_id27
>
>                 org.apache.myfaces.tobago.component.UIOutput@56ebfb Out
> j_id28 page:j_id22:j_id28
>
>       org.apache.myfaces.tobago.component.UICell@9ed2e4 Panel pageContent
> page:pageContent
>
>         org.apache.myfaces.tobago.component.UIPanel@127a744 Panel j_id29
> page:j_id29
>
>           "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@56681b GridLayout j_id30
> page:j_id30
>
>
>
>           org.apache.myfaces.tobago.component.UIPanel@ccd846 Panel
> contractDetail page:contractDetail
>
>             "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@8b168b GridLayout j_id31
> page:j_id31
>
>
>
>             org.apache.myfaces.tobago.component.UIPanel@1753445 Panel
> j_id32 page:j_id32
>
>               "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@1bab96e GridLayout j_id33
> page:j_id33
>
>
>
>               org.apache.myfaces.tobago.component.UICell@1e3f60e Panel
> j_id34 page:j_id34
>
>                 org.apache.myfaces.tobago.component.UIToolBar@12f4771ToolBar contractCommands page:contractCommands
>
>                   org.apache.myfaces.tobago.component.UICommand@fb87d1Button j_id35 page:j_id35
>
>                   org.apache.myfaces.tobago.component.UICommand@191e550Button j_id36 page:j_id36
>
>               org.apache.myfaces.tobago.component.UIPanel@1661834 Panel
> j_id37 page:j_id37
>
>                 "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@1bf30e7 GridLayout j_id38
> page:j_id38
>
>
>
>                 org.apache.myfaces.tobago.component.UILabel@123b070 Label
> j_id39 page:j_id39
>
>                 org.apache.myfaces.tobago.component.UIDateInput@14a86bDate j_id40 page:j_id40
>
>                 org.apache.myfaces.tobago.component.UIDatePicker@3d4350DatePicker j_id41 page:j_id41
>
>                   "pickerPopup" =
> org.apache.myfaces.tobago.component.UIPopup@e4eda Popup j_id40_pickerpopup
> page:j_id40_pickerpopup
>
>
>
>                     org.apache.myfaces.tobago.component.UIPanel@15ad899Box box page:j_id40_pickerpopup:box
>
>                       "layout" =
> org.apache.myfaces.tobago.component.UIGridLayout@1425dec GridLayout layout
> page:j_id40_pickerpopup:layout
>
>
>
>                       org.apache.myfaces.tobago.component.UIProgress@244c
> ...
>
> [Message tronqué]
>



-- 
Zied Hamdi
zatreex.sourceforge.net