Hi,

to ajax-reload a panel instead of submit the entire page replace the
submitAction(...) with

Tobago.reloadComponent(<panelId>, scheduleId);

where <panelId> is the clientId of an ajax-enabled ancestor tobago
component (e.g. tc:box or tc:panel) of the schedule component.


Regards,
    Volker

2007/12/16, Zied Hamdi <[EMAIL PROTECTED]>:
> Hi Volker,
>
> Thanks for your patch, it gives ideas about making the submit ajax-enabled
> (this was a need I abandoned). What is the function to call to say "refresh
> only from this id node"?
>
> From that point, I think I have to make a decorator to t:schedule and add
> the rendered attribute (so that all this tobago js is encapsulaetd in a
> tobago adapter).
>
> p.s: does the Tobago.submitAction(scheduleId) really submit http (in async
> mode) or is it just a naming collision (it only prepares values for submit)?
>
> Regards,
> Zied
>
> 2007/12/14, Volker Weber <[EMAIL PROTECTED]>:
> > Hi Zied,
> >
> > try this:
> >
> > function fireEntrySelected(formId, scheduleId, entryId) {
> >       var form = document.forms[formId];
> >       if (form.tagName != "FORM") {
> >           form = document.forms[formId + "::form"];
> >           form[scheduleId].value = entryId;
> >           Tobago.submitAction(scheduleId);
> >           return true;
> >       }
> >       form[scheduleId].value = entryId;
> >       form.submit();
> >       return true;
> > }
> >
> >
> > Regards,
> >    Volker
> >
> >
> >
> > 2007/12/14, Zied Hamdi < [EMAIL PROTECTED]>:
> > > Hi Volker,
> > >
> > > Can you please tell me if I'm right, I hve only a restricted view of the
> API
> > > and I can't predict side effects as you'll surely do:
> > >
> > > I think the parameter expected by tobago (as the UIPage command) is as
> > > follows e.g: "page::form-action" = "page:intervenant"
> > >
> > > The problem is that a component with the id "page:intervenant" must
> exist in
> > > the tree and must be of type UIComponent (not necessairily a UICommand).
> By
> > > reading only the code of UIPage, all what is needed is the form holding
> the
> > > component with the given id.
> > >
> > > So do you think it's a good solution to fill onMouseUp (entry selection)
> the
> > > value : "page::form-action" = "scheduleId" ?
> > >
> > > this is my snippet:
> > >
> > >
> > > function fireEntrySelected(formId, scheduleId, entryId) {
> > >
> > >        var form = document.forms[formId];
> > >
> > >        // tobago handling
> > >
> > >        if (form == null || form.tagName != "FORM ") {
> > >
> > >              form = document.forms[formId + "::form"];
> > >
> > >              tobagoActionComp = document.forms[formId +
> "::form-action"];
> > >
> > >              if( tobagoActionComp != null ) {
> > >
> > >                    tobagoActionComp.value = scheduleId;
> > >
> > >              } else {
> > >
> > >                    alert( "Unable to set '"+ formId + "::form-action'"
> );
> > >
> > >
> > >              }
> > >
> > >        }
> > >
> > >        form[scheduleId].value = entryId;
> > >
> > >        form.submit();
> > >
> > >        return true;
> > >
> > > }
> > >
> > > The problem is that tobagoActionComp is always null, sorry I'm bad in
> js. I
> > > verified that it is in the source
> > >
> > >
> > >       <form
> > >
> > >              name ="page::form"
> > >
> > >              action
> > > ="/IntoServicesWeb/contract/contract.jsf"
> > >
> > >              id ="page::form"
> > >
> > >              method ="post"
> > >
> > >              accept-charset ="utf-8" >
> > >
> > >              < input
> > >
> > >              type ="hidden"
> > >
> > >              name ="page::form-action"
> > >
> > >              id ="page::form-action"
> > >
> > >              value= "">
> > >
> > >
> > >
> > >  Is there sth wrong?
> > >
> > >
> > >
> > > Regards,
> > >
> > > Zied
> > >
> > > 2007/12/14, Zied Hamdi <[EMAIL PROTECTED]>:
> > > >
> > > > Hi again Volker,
> > > >
> > > > I wrote this in another thread, but for people who will search in this
> > > thread continuation I copy paste what I wrote:
> > > >
> > > > There seams to be a tobago problem :
> > > >
> > >
> org.apache.myfaces.tobago.component.UIPage.markSubmittedForm(FacesContext
> > > facesContext)  calls facesContext.renderResponse() if no "tobago" action
> is
> > > set (line 200). I think the schedule action attribute sends its own
> request
> > > param that is not interepreted by tobago as an action. This needs
> further
> > > looking, but this is my first impression.
> > > >
> > > > This happens directly in the Apply request values phase:
> > > >
> > > >
> > > > FacesContextImpl.renderResponse() line: 400
> > > >
> > > > UIPage.markSubmittedForm(FacesContext) line: 200
> > > >
> > > > UIPage.processDecodes(FacesContext) line: 138
> > > >
> > > >
> UIViewRoot(UIComponentBase).processDecodes(FacesContext)
> > > line: 1001
> > > >
> > > > UIViewRoot(UIViewRoot).processDecodes(FacesContext)
> line:
> > > 493
> > > >
> > > > Any idea on a workaround? (do I have to declare a hidden input with
> the
> > > expected action name?, maybe I should modify UIPage to extend its
> behaviour
> > > to schedule also) what do you think Volker?
> > > >
> > > >
> > > >
> > > > 2007/12/13, Zied Hamdi < [EMAIL PROTECTED]>:
> > > > >
> > > > > Thanks Volker,
> > > > >
> > > > > You saved me a lot of frustrations. I really appreciate your help.
> > > > >
> > > > >
> > > > > Regards,
> > > > > Zied
> > > > >
> > > > >
> > > > > 2007/12/13, Volker Weber <[EMAIL PROTECTED]>:
> > > > > > Hi Zied,
> > > > > >
> > > > > > set
> org.apache.myfaces.tobago.util.DebugPhaseListener
> > > to trace to log
> > > > > > request parameters.
> > > > > > of cause you need also to configure this listener.
> > > > > >
> > > > > >
> > > > > > Regards,
> > > > > >    Volker
> > > > > >
> > > > > > 2007/12/13, Zied Hamdi < [EMAIL PROTECTED]>:
> > > > > > > Hi Volker and Simon,
> > > > > > >
> > > > > > > replacing the method by
> > > > > > > function fireEntrySelected(formId, scheduleId, entryId) {
> > > > > > >        var form = document.forms[formId];
> > > > > > >        if (form == null || form.tagName != "FORM") {
> > > > > > >            form = document.forms [formId + "::form"];
> > > > > > >        }
> > > > > > >        form[scheduleId].value = entryId;
> > > > > > >        form.submit();
> > > > > > >        return true;
> > > > > > > }
> > > > > > >
> > > > > > > seems to work fine (I don't have js erros any more, but I still
> > > don't have
> > > > > > > the element selected: maybe a misuse or sth) even though it
> can't be
> > > in the
> > > > > > > official build, it fulfills my needs to integrate it to a tobago
> > > app.
> > > > > > >
> > > > > > > By the way Volker, I want to verify the good selection value has
> > > been set. I
> > > > > > > remember I saw in the mailing list that activating the TRACE
> mode on
> > > a comp
> > > > > > > will show submitted request parameters values. I tried :
> > > > > > >
> > > > > > >
> > > > > > >
> > >
> log4j.logger.org.apache.myfaces.tobago.component.UIPage=TRACE
> > > > > > >
> > > > > > >
> > >
> log4j.logger.org.apache.myfaces.el.VariableResolverImpl=TRACEbut
> > > > > > > none shows the values. Can please remind me which one it is
> > > > > > >
> > > > > > >
> > > > > > > Simon,
> > > > > > >
> > > > > > > Thanks for your intervention. For me, the schedule was the
> component
> > > that
> > > > > > > had (the responsibility) to find in which form it is embedded in
> the
> > > tree
> > > > > > > structure(that's why I included [tomahawk] in the subject), do
> you
> > > think
> > > > > > > tobago renderers a form tag without having the UIForm in the
> > > structure(2)?
> > > > > > > or (1) tc:page is at the same time a representative of f:view
> and
> > > f:form
> > > > > > > (implements both interfaces)?
> > > > > > >
> > > > > > > I don't have any experience on developing JSF taglibs so sorry
> if
> > > what I say
> > > > > > > is nonsens.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > 2007/12/13, Simon Kitching <[EMAIL PROTECTED] >:
> > > > > > > > I don't see why t:schedule is not usable in tobago.
> > > > > > > >
> > > > > > > > Yes, it looks for a parent UIForm. With tobago, is there one
> in
> > > the
> > > > > > > component tree or not? I would certainly presume so..
> > > > > > > >
> > > > > > > > The schedule code does look for an ancestor form, but what is
> > > wrong with
> > > > > > > that? There should always be exactly one..
> > > > > > > >
> > > > > > > > The only problem that I can see is that when the scheduler
> > > renderer finds
> > > > > > > a UIForm, then emits its clientId into the javascript it outputs
> the
> > > right
> > > > > > > value. In a tobago environment, it is emitting the value "root"
> > > (which is
> > > > > > > the id property of the tobago component) rather than
> "root::form".
> > > > > > > >
> > > > > > > > Where does "root::form" come from?
> > > > > > > >
> > > > > > > > I don't know much about Tobago, but would guess that either:
> > > > > > > > (1) the tc:page component implements UIForm, or
> > > > > > > > (2) the tc:page automatically creates a child UIForm
> > > > > > > >
> > > > > > > > In the case of (1), perhaps the component should implement
> > > > > > > NamingContainer, and override getClientId to return "root::form"
> or
> > > > > > > somesuch.
> > > > > > > >
> > > > > > > > In the case of (2), tc:page should implement NamingContainer,
> and
> > > set the
> > > > > > > id of the child UIForm component to "form". Then its getClientId
> > > would
> > > > > > > return "root:form".
> > > > > > > >
> > > > > > > > There is also the possibility that the t:schedule renderer is
> a
> > > little
> > > > > > > buggy, and is outputting into the javascript the raw componentid
> of
> > > the
> > > > > > > UIForm it finds, rather than its clientId. But if so, that is
> > > reasonably
> > > > > > > easily fixed.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > >
> > > > > > > > Simon
> > > > > > > >
> > > > > > > > ---- Zied Hamdi < [EMAIL PROTECTED]> schrieb:
> > > > > > > > > That's exactly what I didn't want to hear :-). Thanks for
> the
> > > patch,
> > > > > > > I'll
> > > > > > > > > give it a try and tell you if it works.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Zied
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > 2007/12/13, Volker Weber < [EMAIL PROTECTED]>:
> > > > > > > > > >
> > > > > > > > > > Hi,
> > > > > > > > > >
> > > > > > > > > > i think the t:schedule could not be used inside tobago.
> > > > > > > > > >
> > > > > > > > > > it looks like the schedule component looks for the first
> > > parent UIForm
> > > > > > > > > > and takes this id as the id for a html form tag to submit.
> > > This can't
> > > > > > > > > > work in tobago, because there is only one html form tag
> > > surrounding
> > > > > > > > > > all content.
> > > > > > > > > > And nesting form tags is not allowed in html.
> > > > > > > > > >
> > > > > > > > > > We can't fix this in tobago, to make the schedule work in
> > > tobago there
> > > > > > > > > > must added a workarround in the schedule's javascript to
> find
> > > the root
> > > > > > > > > > form tag.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > >    Volker
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > 2007/12/13, Zied Hamdi < [EMAIL PROTECTED]>:
> > > > > > > > > > > Hi Volker,
> > > > > > > > > > >
> > > > > > > > > > > Thank you for your fast reply. I'm sorry the preceding
> mail
> > > was
> > > > > > > against
> > > > > > > > > > > another source code (as in my app).
> > > > > > > > > > >
> > > > > > > > > > > But what I noticed is that, because tc:page creates a
> form
> > > alone,
> > > > > > > the
> > > > > > > > > > form
> > > > > > > > > > > id is always "pageId::form"
> > > > > > > > > > >
> > > > > > > > > > > The tomahawk schedule seams to search for a form with
> the
> > > same name
> > > > > > > as
> > > > > > > > > > > pageId when no explicit form is specified:
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > < tc:page
> > > > > > > > > > >
> > > > > > > > > > >       xmlns=" http://www.w3.org/1999/xhtml";
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:t="
> > > http://myfaces.apache.org/tomahawk";
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:tc="
> > > > > > > > > > >
> http://myfaces.apache.org/tobago/component
> > > "
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:tx="
> > > > > > > > > > >
> http://myfaces.apache.org/tobago/extension";
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:h=" http://java.sun.com/jsf/html";
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:f=" http://java.sun.com/jsf/core";
> > > > > > > > > > >
> > > > > > > > > > >       id= "root">
> > > > > > > > > > >
> > > > > > > > > > >        <!--  The schedule itself -->
> > > > > > > > > > >
> > > > > > > > > > >        < div style ="position: absolute; left: 220px;
> top:
> > > 5px;
> > > > > > > right:
> > > > > > > > > > 5px;"
> > > > > > > > > > > ><t:schedule
> > > > > > > > > > >
> > > > > > > > > > >              value
> > > > > > > ="#{contractCtrl.scheduleModel.model }"
> > > > > > > > > > >
> > > > > > > > > > >              id ="schedule1"
> > > > > > > > > > >
> > > > > > > > > > >              rendered ="true"
> > > > > > > > > > >
> > > > > > > > > > >              visibleEndHour ="18"
> > > > > > > > > > >
> > > > > > > > > > >              visibleStartHour ="8"
> > > > > > > > > > >
> > > > > > > > > > >              workingEndHour ="17"
> > > > > > > > > > >
> > > > > > > > > > >              workingStartHour ="9"
> > > > > > > > > > >
> > > > > > > > > > >              readonly ="false"
> > > > > > > > > > >
> > > > > > > > > > >              theme ="evolution"
> > > > > > > > > > >
> > > > > > > > > > >              tooltip= "true" /></div >
> > > > > > > > > > >
> > > > > > > > > > > </ tc:page>
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Outputs this snippet:
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >       <form
> > > > > > > > > > >
> > > > > > > > > > >              name ="root::form"
> > > > > > > > > > >
> > > > > > > > > > >              action
> > > > > > > ="/IntoServicesWeb/test/schedule.jsf"
> > > > > > > > > > >
> > > > > > > > > > >              id ="root::form"
> > > > > > > > > > >
> > > > > > > > > > >              method ="post"
> > > > > > > > > > >
> > > > > > > > > > >              accept-charset ="utf-8" ><input
> > > > > > > > > > >
> > > > > > > > > > >              type ="hidden"
> > > > > > > > > > >
> > > > > > > > > > >              name ="root::form-action"
> > > > > > > > > > >
> > > > > > > > > > >              id ="root::form-action"
> > > > > > > > > > >
> > > > > > > > > > >              value ="" >
> > > > > > > > > > >
> > > > > > > > > > >        < div style ="position: absolute; left: 220px;
> top:
> > > 5px;
> > > > > > > right:
> > > > > > > > > > 5px;"
> > > > > > > > > > > ><input
> > > > > > > > > > >
> > > > > > > > > > >              type ="hidden"
> > > > > > > > > > >
> > > > > > > > > > >              name ="root:schedule1" ><input
> > > > > > > > > > >
> > > > > > > > > > >              type ="hidden"
> > > > > > > > > > >
> > > > > > > > > > >              name
> > > > > > > ="root:schedule1_last_clicked_date"
> > > > > > > > > > > ><input
> > > > > > > > > > >
> > > > > > > > > > >              type= "hidden"
> > > > > > > > > > >
> > > > > > > > > > >
> > > name="root:schedule1_last_clicked_y" >
> > > > > > > > > > >
> > > > > > > > > > >       <div
> > > > > > > > > > >
> > > > > > > > > > >
> > > class="schedule-compact-evolution"
> > > > > > > > > > >
> > > > > > > > > > >             style="border-style: none; overflow:
> hidden;" >
> > > > > > > > > > >
> > > > > > > > > > >       <table
> > > > > > > > > > >
> > > > > > > > > > >              class ="month"
> > > > > > > > > > >
> > > > > > > > > > >              style ="position: relative; left: 0px; top:
> > > 0px; width:
> > > > > > > > > > 100%;"
> > > > > > > > > > >
> > > > > > > > > > >              cellpadding ="0"
> > > > > > > > > > >
> > > > > > > > > > >              cellspacing ="1"
> > > > > > > > > > >
> > > > > > > > > > >              border ="0"
> > > > > > > > > > >
> > > > > > > > > > >              width ="100%" >
> > > > > > > > > > >
> > > > > > > > > > >              < tbody>
> > > > > > > > > > >
> > > > > > > > > > >                    < tr>
> > > > > > > > > > >
> > > > > > > > > > >                          < td
> > > > > > > > > > >
> > > > > > > > > > >                               rowspan ="2"
> > > > > > > > > > >
> > > > > > > > > > >                               class ="inactive-day
> workday"
> > > > > > > > > > >
> > > > > > > > > > >                               style ="height: 121px;
> width:
> > > > > > > 16.666666%;"
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >                          < table
> > > > > > > > > > >
> > > > > > > > > > >                               class ="day"
> > > > > > > > > > >
> > > > > > > > > > >                               style ="height: 121px;
> width:
> > > 100%;"
> > > > > > > > > > >
> > > > > > > > > > >                               cellpadding ="0"
> > > > > > > > > > >
> > > > > > > > > > >                               cellspacing ="0" >
> > > > > > > > > > >
> > > > > > > > > > >                               < tr>
> > > > > > > > > > >
> > > > > > > > > > >                                     <
> td
> > > > > > > > > > >
> > > > > > > > > > >
> > > class
> > > > > > > ="header"
> > > > > > > > > > >
> > > > > > > > > > >
> > > style
> > > > > > > ="height:
> > > > > > > > > > > 18px; width: 100%; overflow: hidden"
> > > > > > > > > > >
> > > > > > > > > > >
> > > id
> > > > > > > > > > > ="root:schedule1_header_20071126" >26
> nov.
> > > 2007
> > > > > > > </td >
> > > > > > > > > > >
> > > > > > > > > > >                               </ tr>
> > > > > > > > > > >
> > > > > > > > > > >                               < tr>
> > > > > > > > > > >
> > > > > > > > > > >                                     <
> td
> > > > > > > > > > >
> > > > > > > > > > >
> > > class
> > > > > > > ="content"
> > > > > > > > > > >
> > > > > > > > > > >
> > > style
> > > > > > > ="height:
> > > > > > > > > > > 103px; width: 100%;" >
> > > > > > > > > > >
> > > > > > > > > > >                                     <
> div
> > > > > > > > > > >
> > > > > > > > > > >
> > > class
> > > > > > > > > > > ="contentview"
> > > > > > > > > > >
> > > > > > > > > > >
> > > style
> > > > > > > ="width:
> > > > > > > > > > > 100%; height: 100%; overflow: auto; vertical-align:
> top;" >
> > > > > > > > > > >
> > > > > > > > > > >                                     <
> div
> > > > > > > > > > >
> > > > > > > > > > >
> > > style
> > > > > > > ="width:
> > > > > > > > > > > 100%; height: 100%; vertical-align: top;"
> > > > > > > > > > >
> > > > > > > > > > >
> > > id
> > > > > > > > > > > ="root:schedule1_body_20071126" >
> > > > > > > > > > >
> > > > > > > > > > >                                     <
> table
> > > style
> > > > > > > ="width:
> > > > > > > > > > > 100%;" >
> > > > > > > > > > >
> > > > > > > > > > >
>   <
> > > tr>
> > > > > > > > > > >
> > > > > > > > > > >
> > >     <
> > > > > > > td
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > >   style
> > > > > > > > > > > ="width: 100%;"
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > onmouseover ="return makeTrue(domTT_activate(this,
> event,
> > > 'caption',
> > > > > > > > > > > 'Menage', 'content', '&lt;i&gt;Alice du four (Pour
> > > > > > > Hedia)&lt;/i&gt;',
> > > > > > > > > > > 'trail', true));" >< a
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > >   href
> > > > > > > > > > > ="#"
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > onmouseup ="fireEntrySelected('root', 'root:schedule1',
> > > '688133');"
> > > > > > > >
> > > > > > > > > > > 3:28PM-4:28PM: Menage</ a></ td>
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > So even when I want to enfore rules by specifying my own
> > > form with
> > > > > > > my
> > > > > > > > > > own
> > > > > > > > > > > id, the tobago libs use a tobago js function to retreive
> it,
> > > but
> > > > > > > other
> > > > > > > > > > libs
> > > > > > > > > > > are lost:
> > > > > > > > > > >
> > > > > > > > > > > I was trying this page:
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > < tc:page
> > > > > > > > > > >
> > > > > > > > > > >       xmlns= " http://www.w3.org/1999/xhtml";
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:t= "
> > > > > > > http://myfaces.apache.org/tomahawk "
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:tc= "
> > > > > > > > > > >
> http://myfaces.apache.org/tobago/component";
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:tx= "
> > > > > > > > > > >
> http://myfaces.apache.org/tobago/extension
> > > "
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:h= " http://java.sun.com/jsf/html "
> > > > > > > > > > >
> > > > > > > > > > >       xmlns:f= " http://java.sun.com/jsf/core "
> > > > > > > > > > >
> > > > > > > > > > >       id ="root" >
> > > > > > > > > > >
> > > > > > > > > > >       < tc:form id = "testS" >
> > > > > > > > > > >
> > > > > > > > > > >             <!--  The schedule itself -->
> > > > > > > > > > >
> > > > > > > > > > >             < div style ="position: absolute; left:
> 220px;
> > > top: 5px;
> > > > > > > > > > right:
> > > > > > > > > > > 5px;" >
> > > > > > > > > > >
> > > > > > > > > > >                 < t:schedule
> > > > > > > > > > >
> > > > > > > > > > >                   value
> > > > > > > > > > > ="#{ contractCtrl.scheduleModel.model
> }"
> > > > > > > > > > >
> > > > > > > > > > >                   id ="schedule1"
> > > > > > > > > > >
> > > > > > > > > > >                   rendered ="true"
> > > > > > > > > > >
> > > > > > > > > > >                   visibleEndHour ="18"
> > > > > > > > > > >
> > > > > > > > > > >                   visibleStartHour ="8"
> > > > > > > > > > >
> > > > > > > > > > >                   workingEndHour ="17"
> > > > > > > > > > >
> > > > > > > > > > >                   workingStartHour ="9"
> > > > > > > > > > >
> > > > > > > > > > >                   readonly ="false"
> > > > > > > > > > >
> > > > > > > > > > >                   theme ="evolution"
> > > > > > > > > > >
> > > > > > > > > > >                   tooltip ="true" /></ div >
> > > > > > > > > > >
> > > > > > > > > > >       </ tc:form>
> > > > > > > > > > >
> > > > > > > > > > > </ tc:page>
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > I can't get why we get this html output:
> > > > > > > > > > >
> > > > > > > > > > > < form
> > > > > > > > > > >
> > > > > > > > > > >       name ="root::form"
> > > > > > > > > > >
> > > > > > > > > > >       action
> > > ="/IntoServicesWeb/test/schedule.jsf"
> > > > > > > > > > >
> > > > > > > > > > >       id ="root::form"
> > > > > > > > > > >
> > > > > > > > > > >       method ="post"
> > > > > > > > > > >
> > > > > > > > > > >       accept-charset ="utf-8" >< input
> > > > > > > > > > >
> > > > > > > > > > >       type ="hidden"
> > > > > > > > > > >
> > > > > > > > > > >       name ="root::form-action"
> > > > > > > > > > >
> > > > > > > > > > >       id ="root::form-action"
> > > > > > > > > > >
> > > > > > > > > > >       value ="" >
> > > > > > > > > > >
> > > > > > > > > > > < div style ="position: absolute; left: 220px; top: 5px;
> > > right:
> > > > > > > 5px;"
> > > > > > > > > > > ><input
> > > > > > > > > > >
> > > > > > > > > > >       type ="hidden"
> > > > > > > > > > >
> > > > > > > > > > >       name ="root:testS:schedule1" >< input
> > > > > > > > > > >
> > > > > > > > > > >       type ="hidden"
> > > > > > > > > > >
> > > > > > > > > > >       name
> > > > > > > ="root:testS:schedule1_last_clicked_date" ><
> > > > > > > > > > > input
> > > > > > > > > > >
> > > > > > > > > > >       type ="hidden"
> > > > > > > > > > >
> > > > > > > > > > >       name
> > > ="root:testS:schedule1_last_clicked_y" >
> > > > > > > > > > >
> > > > > > > > > > > < div
> > > > > > > > > > >
> > > > > > > > > > >       class ="schedule-compact-evolution"
> > > > > > > > > > >
> > > > > > > > > > >       style ="border-style: none; overflow: hidden;" >
> > > > > > > > > > >
> > > > > > > > > > > < table
> > > > > > > > > > >
> > > > > > > > > > >       class ="month"
> > > > > > > > > > >
> > > > > > > > > > >       style ="position: relative; left: 0px; top: 0px;
> > > width: 100%;"
> > > > > > > > > > >
> > > > > > > > > > >       cellpadding ="0"
> > > > > > > > > > >
> > > > > > > > > > >       cellspacing ="1"
> > > > > > > > > > >
> > > > > > > > > > >       border ="0"
> > > > > > > > > > >
> > > > > > > > > > >       width ="100%" >
> > > > > > > > > > >
> > > > > > > > > > >       < tbody>
> > > > > > > > > > >
> > > > > > > > > > >             < tr>
> > > > > > > > > > >
> > > > > > > > > > >                   < td
> > > > > > > > > > >
> > > > > > > > > > >                         rowspan ="2"
> > > > > > > > > > >
> > > > > > > > > > >                         class ="inactive-day workday"
> > > > > > > > > > >
> > > > > > > > > > >     ...
> > > > > > > > > > >
> > > > > > > > > > > [Nachricht gekürzt]
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > --
> > > > > > > > > > inexso - information exchange solutions GmbH
> > > > > > > > > > Bismarckstraße 13      | 26122 Oldenburg
> > > > > > > > > > Tel.: +49 441 4082 356 |
> > > > > > > > > > FAX:  +49 441 4082 355 | www.inexso.de
> > > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > --
> > > > > > > > > Zied Hamdi
> > > > > > > > > zatreex.sourceforge.net
> > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > --
> > > > > > > Zied Hamdi
> > > > > > > zatreex.sourceforge.net
> > > > > >
> > > > > >
> > > > > > --
> > > > > > inexso - information exchange solutions GmbH
> > > > > > Bismarckstraße 13      | 26122 Oldenburg
> > > > > > Tel.: +49 441 4082 356 |
> > > > > > FAX:  +49 441 4082 355 | www.inexso.de
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > >
> > > > > Zied Hamdi
> > > > > zatreex.sourceforge.net
> > > >
> > > >
> > > >
> > > > --
> > > >
> > > > Zied Hamdi
> > > > zatreex.sourceforge.net
> > >
> > >
> > >
> > > --
> > >
> > > Zied Hamdi
> > > zatreex.sourceforge.net
> >
> >
> > --
> > inexso - information exchange solutions GmbH
> > Bismarckstraße 13      | 26122 Oldenburg
> > Tel.: +49 441 4082 356 |
> > FAX:  +49 441 4082 355 | www.inexso.de
> >
>
>
>
> --
>
> Zied Hamdi
> zatreex.sourceforge.net


-- 
inexso - information exchange solutions GmbH
Bismarckstraße 13      | 26122 Oldenburg
Tel.: +49 441 4082 356 |
FAX:  +49 441 4082 355 | www.inexso.de

Reply via email to