Revisited: submit not working; control no longer bound to a node

classic Classic list List threaded Threaded
20 messages Options
Reply | Threaded
Open this post in threaded view
|

Revisited: submit not working; control no longer bound to a node

paul.hermans
I made a very simple example.

If the two required fields are filled in right away, submission succeeds.
If I fill in one, submit, an error is received, which is expected behaviour.
If I fill in the second required field then, an error is received.

<h:head>
        <f:model>
            <f:instance>
                <test>
                    <a/>
                    <b/>
                </test>
            </f:instance>
            <f:bind nodeset="a" required="true()"/>
            <f:bind nodeset="b" required="true()"/>
            <f:submission id="print-submission"
                action="/spil-edit/test2" method="post">
                <f:action ev:event="xforms-submit-error">
                    <f:message level="modal">Not all required fields are filled in.</f:message>
                </f:action>
            </f:submission>
        </f:model>
    </h:head>
    <h:body>
        <f:input ref="a" />
        <f:input ref="b" />
        <f:trigger>
            <f:label>Print</f:label>
            <f:action ev:event="DOMActivate">
                <f:send submission="print-submission"/>
            </f:action>
        </f:trigger>
    </h:body>



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Revisited: submit not working; control no longer bound to a node

Erik Bruchez
Administrator
Paul,

Thanks for the sample. (Could you please next time attach a complete,
working sample rather than paste code in the body of the message? The
shorter the amount of time we spend on reproducing issues, the more
likely we are to get to look at them.)

But I don't reproduce this, neither in the online sandbox
(http://www.orbeon.com/ops/xforms-sandbox), nor with the latest code,
with the attached sample that I slightly modified to have a root element
and to do a GET on Google.

-Erik

[hidden email] wrote:

> I made a very simple example.
>
> If the two required fields are filled in right away, submission succeeds.
> If I fill in one, submit, an error is received, which is expected behaviour.
> If I fill in the second required field then, an error is received.
>
> <h:head>
>         <f:model>
>             <f:instance>
>                 <test>
>                     <a/>
>                     <b/>
>                 </test>
>             </f:instance>
>             <f:bind nodeset="a" required="true()"/>
>             <f:bind nodeset="b" required="true()"/>
>             <f:submission id="print-submission"
>                 action="/spil-edit/test2" method="post">
>                 <f:action ev:event="xforms-submit-error">
>                     <f:message level="modal">Not all required fields are filled in.</f:message>
>                 </f:action>
>             </f:submission>
>         </f:model>
>     </h:head>
>     <h:body>
>         <f:input ref="a" />
>         <f:input ref="b" />
>         <f:trigger>
>             <f:label>Print</f:label>
>             <f:action ev:event="DOMActivate">
>                 <f:send submission="print-submission"/>
>             </f:action>
>         </f:trigger>
>     </h:body>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

--
Orbeon Forms - XForms Everywhere
http://www.orbeon.com/blog/


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

test.xhtml (1K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

FW: Revisited: submit not working; control no longer bound to a node

Paul Hermans-2



-----Original Message-----
From: Paul Hermans
Sent: Tue 21-11-2006 11:07
To: [hidden email]
Subject: RE: [ops-users] Revisited: submit not working; control no longer bound to a node
 
Erik,

I used the latest build with this example (zip attached).
In pageflow:

<page path-info="/spil-edit/test1" view="test1.xhtml"/>
<page path-info="/spil-edit/test2" view="test2.xhtml"/>

If I enter both fields, I'm submitting.
If I enter one, I get the expected submit error.
After the error message I fill in the second one,
I still get the submit error.
Until I start from scratch deleting both fields and reentering them together.


Paul


-----Original Message-----
From: Erik Bruchez on behalf of Erik Bruchez
Sent: Mon 20-11-2006 19:23
To: [hidden email]
Subject: Re: [ops-users] Revisited: submit not working; control no longer bound to a node
 
Paul,

Thanks for the sample. (Could you please next time attach a complete,
working sample rather than paste code in the body of the message? The
shorter the amount of time we spend on reproducing issues, the more
likely we are to get to look at them.)

But I don't reproduce this, neither in the online sandbox
(http://www.orbeon.com/ops/xforms-sandbox), nor with the latest code,
with the attached sample that I slightly modified to have a root element
and to do a GET on Google.

-Erik

[hidden email] wrote:

> I made a very simple example.
>
> If the two required fields are filled in right away, submission succeeds.
> If I fill in one, submit, an error is received, which is expected behaviour.
> If I fill in the second required field then, an error is received.
>
> <h:head>
>         <f:model>
>             <f:instance>
>                 <test>
>                     <a/>
>                     <b/>
>                 </test>
>             </f:instance>
>             <f:bind nodeset="a" required="true()"/>
>             <f:bind nodeset="b" required="true()"/>
>             <f:submission id="print-submission"
>                 action="/spil-edit/test2" method="post">
>                 <f:action ev:event="xforms-submit-error">
>                     <f:message level="modal">Not all required fields are filled in.</f:message>
>                 </f:action>
>             </f:submission>
>         </f:model>
>     </h:head>
>     <h:body>
>         <f:input ref="a" />
>         <f:input ref="b" />
>         <f:trigger>
>             <f:label>Print</f:label>
>             <f:action ev:event="DOMActivate">
>                 <f:send submission="print-submission"/>
>             </f:action>
>         </f:trigger>
>     </h:body>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

--
Orbeon Forms - XForms Everywhere
http://www.orbeon.com/blog/





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

test.zip (1K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: FW: Revisited: submit not working; control no longer bound to a node

Erik Bruchez
Administrator
Paul,

> I used the latest build with this example (zip attached).
> In pageflow:
>
> <page path-info="/spil-edit/test1" view="test1.xhtml"/>
> <page path-info="/spil-edit/test2" view="test2.xhtml"/>
>
> If I enter both fields, I'm submitting.
> If I enter one, I get the expected submit error.
> After the error message I fill in the second one,
> I still get the submit error.
> Until I start from scratch deleting both fields and reentering them together.
Thanks, but I really don't see what you are seeing. Whether I enter the
two fields right away before submitting, or whether I see the error
message first, then complete the second field, then submit, in both
cases I go to the second page.

I attach a test directory. If you download a nightly build, you can
unzip this right under the /apps/ directory (no other configuration is
needed). Then go to /test/test1 with your browser. Do you still see the
problem?

-Erik

--
Orbeon Forms - XForms Everywhere
http://www.orbeon.com/blog/


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

test.zip (2K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Revisited: submit not working; control no longer bound to a node

Paul Hermans-2
In reply to this post by Paul Hermans-2
Erik,

I used the latest build with this example (zip attached).
In pageflow:

<page path-info="/spil-edit/test1" view="test1.xhtml"/>
<page path-info="/spil-edit/test2" view="test2.xhtml"/>

If I enter both fields, I'm submitting.
If I enter one, I get the expected submit error.
After the error message I fill in the second one,
I still get the submit error.
Until I start from scratch deleting both fields and reentering them together.
Or is there an action needed to 'rebind' the data after a submit error?


Paul


-----Original Message-----
From: Erik Bruchez on behalf of Erik Bruchez
Sent: Mon 20-11-2006 19:23
To: [hidden email]
Subject: Re: [ops-users] Revisited: submit not working; control no longer bound to a node
 
Paul,

Thanks for the sample. (Could you please next time attach a complete,
working sample rather than paste code in the body of the message? The
shorter the amount of time we spend on reproducing issues, the more
likely we are to get to look at them.)

But I don't reproduce this, neither in the online sandbox
(http://www.orbeon.com/ops/xforms-sandbox), nor with the latest code,
with the attached sample that I slightly modified to have a root element
and to do a GET on Google.

-Erik

[hidden email] wrote:

> I made a very simple example.
>
> If the two required fields are filled in right away, submission succeeds.
> If I fill in one, submit, an error is received, which is expected behaviour.
> If I fill in the second required field then, an error is received.
>
> <h:head>
>         <f:model>
>             <f:instance>
>                 <test>
>                     <a/>
>                     <b/>
>                 </test>
>             </f:instance>
>             <f:bind nodeset="a" required="true()"/>
>             <f:bind nodeset="b" required="true()"/>
>             <f:submission id="print-submission"
>                 action="/spil-edit/test2" method="post">
>                 <f:action ev:event="xforms-submit-error">
>                     <f:message level="modal">Not all required fields are filled in.</f:message>
>                 </f:action>
>             </f:submission>
>         </f:model>
>     </h:head>
>     <h:body>
>         <f:input ref="a" />
>         <f:input ref="b" />
>         <f:trigger>
>             <f:label>Print</f:label>
>             <f:action ev:event="DOMActivate">
>                 <f:send submission="print-submission"/>
>             </f:action>
>         </f:trigger>
>     </h:body>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

--
Orbeon Forms - XForms Everywhere
http://www.orbeon.com/blog/






--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

test.zip (1K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Revisited: submit not working; control no longer bound to a node

Alessandro  Vernet
Administrator
Paul,

I was unable to reproduce this. If I enter just "a" in the first field
and press "Print", I get an alert saying "Not all field required are
filled in". Then I enter "b" in the second field, press "Print", and
it takes me to the other page with just the 2 text fields.

What is the error you are getting in your case?

I attached the test app based on your files. To reproduce, uncompress
it in apps, and go to http://localhost:8080/orbeon/test/test1 (if your
WAR context is orbeon).

Alex

On 12/4/06, Paul Hermans <[hidden email]> wrote:

> Erik,
>
> I used the latest build with this example (zip attached).
> In pageflow:
>
> <page path-info="/spil-edit/test1" view="test1.xhtml"/>
> <page path-info="/spil-edit/test2" view="test2.xhtml"/>
>
> If I enter both fields, I'm submitting.
> If I enter one, I get the expected submit error.
> After the error message I fill in the second one,
> I still get the submit error.
> Until I start from scratch deleting both fields and reentering them together.
> Or is there an action needed to 'rebind' the data after a submit error?
>
>
> Paul
>
>
> -----Original Message-----
> From: Erik Bruchez on behalf of Erik Bruchez
> Sent: Mon 20-11-2006 19:23
> To: [hidden email]
> Subject: Re: [ops-users] Revisited: submit not working; control no longer bound to a node
>
> Paul,
>
> Thanks for the sample. (Could you please next time attach a complete,
> working sample rather than paste code in the body of the message? The
> shorter the amount of time we spend on reproducing issues, the more
> likely we are to get to look at them.)
>
> But I don't reproduce this, neither in the online sandbox
> (http://www.orbeon.com/ops/xforms-sandbox), nor with the latest code,
> with the attached sample that I slightly modified to have a root element
> and to do a GET on Google.
>
> -Erik
>
> [hidden email] wrote:
> > I made a very simple example.
> >
> > If the two required fields are filled in right away, submission succeeds.
> > If I fill in one, submit, an error is received, which is expected behaviour.
> > If I fill in the second required field then, an error is received.
> >
> > <h:head>
> >         <f:model>
> >             <f:instance>
> >                 <test>
> >                     <a/>
> >                     <b/>
> >                 </test>
> >             </f:instance>
> >             <f:bind nodeset="a" required="true()"/>
> >             <f:bind nodeset="b" required="true()"/>
> >             <f:submission id="print-submission"
> >                 action="/spil-edit/test2" method="post">
> >                 <f:action ev:event="xforms-submit-error">
> >                     <f:message level="modal">Not all required fields are filled in.</f:message>
> >                 </f:action>
> >             </f:submission>
> >         </f:model>
> >     </h:head>
> >     <h:body>
> >         <f:input ref="a" />
> >         <f:input ref="b" />
> >         <f:trigger>
> >             <f:label>Print</f:label>
> >             <f:action ev:event="DOMActivate">
> >                 <f:send submission="print-submission"/>
> >             </f:action>
> >         </f:trigger>
> >     </h:body>
> >
> >
> > ------------------------------------------------------------------------
> >
> >
> > --
> > You receive this message as a subscriber of the [hidden email] mailing list.
> > To unsubscribe: mailto:[hidden email]
> > For general help: mailto:[hidden email]?subject=help
> > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
> --
> Orbeon Forms - XForms Everywhere
> http://www.orbeon.com/blog/
>
>
>
>
>
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>

--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

test.zip (2K) Download Attachment
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

RE: Revisited: submit not working; control no longer bound to a node

Paul Hermans-2
Dear Alex,

I still had the same problem with your included app.
"XForms error. Control is no lounger bound to a node. Cannot set external value."

However I installed ops from scratch on another system and there was no issue at all.
So I reinstalled everything on my laptop and problem gone.

Still puzzled what went wrong, but anyhow "we're back now".

Thanks for the help.


Paul


-----Original Message-----
From: [hidden email] on behalf of Alessandro Vernet
Sent: Tue 5-12-2006 8:15
To: [hidden email]
Subject: Re: [ops-users] Revisited: submit not working; control no longer bound to a node
 
Paul,

I was unable to reproduce this. If I enter just "a" in the first field
and press "Print", I get an alert saying "Not all field required are
filled in". Then I enter "b" in the second field, press "Print", and
it takes me to the other page with just the 2 text fields.

What is the error you are getting in your case?

I attached the test app based on your files. To reproduce, uncompress
it in apps, and go to http://localhost:8080/orbeon/test/test1 (if your
WAR context is orbeon).

Alex

On 12/4/06, Paul Hermans <[hidden email]> wrote:

> Erik,
>
> I used the latest build with this example (zip attached).
> In pageflow:
>
> <page path-info="/spil-edit/test1" view="test1.xhtml"/>
> <page path-info="/spil-edit/test2" view="test2.xhtml"/>
>
> If I enter both fields, I'm submitting.
> If I enter one, I get the expected submit error.
> After the error message I fill in the second one,
> I still get the submit error.
> Until I start from scratch deleting both fields and reentering them together.
> Or is there an action needed to 'rebind' the data after a submit error?
>
>
> Paul
>
>
> -----Original Message-----
> From: Erik Bruchez on behalf of Erik Bruchez
> Sent: Mon 20-11-2006 19:23
> To: [hidden email]
> Subject: Re: [ops-users] Revisited: submit not working; control no longer bound to a node
>
> Paul,
>
> Thanks for the sample. (Could you please next time attach a complete,
> working sample rather than paste code in the body of the message? The
> shorter the amount of time we spend on reproducing issues, the more
> likely we are to get to look at them.)
>
> But I don't reproduce this, neither in the online sandbox
> (http://www.orbeon.com/ops/xforms-sandbox), nor with the latest code,
> with the attached sample that I slightly modified to have a root element
> and to do a GET on Google.
>
> -Erik
>
> [hidden email] wrote:
> > I made a very simple example.
> >
> > If the two required fields are filled in right away, submission succeeds.
> > If I fill in one, submit, an error is received, which is expected behaviour.
> > If I fill in the second required field then, an error is received.
> >
> > <h:head>
> >         <f:model>
> >             <f:instance>
> >                 <test>
> >                     <a/>
> >                     <b/>
> >                 </test>
> >             </f:instance>
> >             <f:bind nodeset="a" required="true()"/>
> >             <f:bind nodeset="b" required="true()"/>
> >             <f:submission id="print-submission"
> >                 action="/spil-edit/test2" method="post">
> >                 <f:action ev:event="xforms-submit-error">
> >                     <f:message level="modal">Not all required fields are filled in.</f:message>
> >                 </f:action>
> >             </f:submission>
> >         </f:model>
> >     </h:head>
> >     <h:body>
> >         <f:input ref="a" />
> >         <f:input ref="b" />
> >         <f:trigger>
> >             <f:label>Print</f:label>
> >             <f:action ev:event="DOMActivate">
> >                 <f:send submission="print-submission"/>
> >             </f:action>
> >         </f:trigger>
> >     </h:body>
> >
> >
> > ------------------------------------------------------------------------
> >
> >
> > --
> > You receive this message as a subscriber of the [hidden email] mailing list.
> > To unsubscribe: mailto:[hidden email]
> > For general help: mailto:[hidden email]?subject=help
> > ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
> --
> Orbeon Forms - XForms Everywhere
> http://www.orbeon.com/blog/
>
>
>
>
>
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>

--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

winmail.dat (6K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: RE: Revisited: submit not working; control no longer bound to a node

Alessandro  Vernet
Administrator
On 12/5/06, Paul Hermans <[hidden email]> wrote:
> So I reinstalled everything on my laptop and problem gone.

Paul, I also have no clue to what may have caused this :), but I am
glad to read that a reinstall solved the problem.

Alex
--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

Firefox problem?

Peter Kolarov-2
Hi all,

I have tried this very simple XForm test below on somewhat recent OPS build
and in Firefox it displays the input box for one second and than it hides
it, only the section and help(?) stays on the screen, IE works fine, also
XForm sandbox on ops site renders it fine. Any hints?

-peter

<html:html xmlns:html="http://www.w3.org/1999/xhtml"
           xmlns:xf="http://www.w3.org/2002/xforms">
 
<html:head>
 
<xf:model id="main-model">
   
<xf:instance id="instance">
<instance xmlns="">
  <input1>input1</input1>
</instance>
</xf:instance>
   
</xf:model>
 
</html:head>
 
<html:body>
 
<xf:group ref="instance('instance')">
  <xf:label>Section</xf:label>
 
<xf:input id="input1" ref="input1">
  <xf:label>Input:</xf:label>
  <xf:hint>Hint</xf:hint>
  <xf:alert>Invalid value</xf:alert>
  <xf:help>Help</xf:help>
</xf:input>
 
</xf:group>
 
</html:body>
 
</html:html>





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox problem?

Martin Mohnhaupt
Hello Peter,

Try this;

<xf:model id="main-model"> 
   
<xf:instance id="instance"> 
   <instance xmlns=""> 
      <form xmlns="">
         <input1>input1</input1> 
      </form>
   </instance> 
</xf:instance> 
</xf:model> 

Kind regards,

-Martin


Peter Kolarov wrote:
Hi all, 

I have tried this very simple XForm test below on somewhat recent OPS build
and in Firefox it displays the input box for one second and than it hides
it, only the section and help(?) stays on the screen, IE works fine, also
XForm sandbox on ops site renders it fine. Any hints?

-peter

<html:html xmlns:html="http://www.w3.org/1999/xhtml" 
           xmlns:xf="http://www.w3.org/2002/xforms"> 
 
<html:head> 
 
<xf:model id="main-model"> 
   
<xf:instance id="instance"> 
<instance xmlns=""> 
  <input1>input1</input1> 
</instance> 
</xf:instance> 
   
</xf:model> 
 
</html:head> 
 
<html:body> 
 
<xf:group ref="instance('instance')"> 
  <xf:label>Section</xf:label> 
 
<xf:input id="input1" ref="input1"> 
  <xf:label>Input:</xf:label> 
  <xf:hint>Hint</xf:hint> 
  <xf:alert>Invalid value</xf:alert> 
  <xf:help>Help</xf:help> 
</xf:input> 
 
</xf:group> 
 
</html:body> 
 
</html:html>



  

-- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: [hidden email] For general help: [hidden email] ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

-- 
Martin Mohnhaupt
Nice Data Systems
Rue de Lyon 42 - CH 1203 GENEVE
Tél: +41 (0) 22 344 11 39
Mob: +41 (0) 78 636 00 75
Email: [hidden email]
Web: http://www.nicedata.com
Skype: martin.mohnhaupt
Action Carbone: http://www.actioncarbone.org


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Firefox problem?

Peter Kolarov-2

Hi Martin,

 

Nope, that did not help, and I would hope that changing model would not fix this, as my Xform works in sandbox and in IE but not in Firefox so probably some CSS/Javascript  problem?

 

-peter

 


From: Martin Mohnhaupt [mailto:[hidden email]]
Sent: 7. decembra 2006 11:23
To: [hidden email]
Subject: Re: [ops-users] Firefox problem?

 

Hello Peter,

Try this;


<xf:model id="main-model"> 
   
<xf:instance id="instance"> 
   <instance xmlns=""> 
      <form xmlns="">
         <input1>input1</input1> 
      </form>
   </instance> 
</xf:instance> 
</xf:model> 


Kind regards,

-Martin


Peter Kolarov wrote:

Hi all, 
 
I have tried this very simple XForm test below on somewhat recent OPS build
and in Firefox it displays the input box for one second and than it hides
it, only the section and help(?) stays on the screen, IE works fine, also
XForm sandbox on ops site renders it fine. Any hints?
 
-peter
 
<html:html xmlns:html="http://www.w3.org/1999/xhtml" 
           xmlns:xf="http://www.w3.org/2002/xforms"> 
 
<html:head> 
 
<xf:model id="main-model"> 
   
<xf:instance id="instance"> 
<instance xmlns=""> 
  <input1>input1</input1> 
</instance> 
</xf:instance> 
   
</xf:model> 
 
</html:head> 
 
<html:body> 
 
<xf:group ref="instance('instance')"> 
  <xf:label>Section</xf:label> 
 
<xf:input id="input1" ref="input1"> 
  <xf:label>Input:</xf:label> 
  <xf:hint>Hint</xf:hint> 
  <xf:alert>Invalid value</xf:alert> 
  <xf:help>Help</xf:help> 
</xf:input> 
 
</xf:group> 
 
</html:body> 
 
</html:html>
 
 
 
  
 



 
 
--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: [hidden email]
For general help: [hidden email]
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
  



-- 
Martin Mohnhaupt
Nice Data Systems
Rue de Lyon 42 - CH 1203 GENEVE
Tél: +41 (0) 22 344 11 39
Mob: +41 (0) 78 636 00 75
Email: [hidden email]
Web: http://www.nicedata.com
Skype: martin.mohnhaupt
Action Carbone: http://www.actioncarbone.org


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Firefox problem?

Peter Kolarov-2

Actually this bug goes away when another input is added ... but it is still a bug somewhere, may be in Firefox?

 


From: Peter Kolarov [mailto:[hidden email]]
Sent: 7. decembra 2006 11:40
To: [hidden email]
Subject: RE: [ops-users] Firefox problem?

 

Hi Martin,

 

Nope, that did not help, and I would hope that changing model would not fix this, as my Xform works in sandbox and in IE but not in Firefox so probably some CSS/Javascript  problem?

 

-peter

 


From: Martin Mohnhaupt [mailto:[hidden email]]
Sent: 7. decembra 2006 11:23
To: [hidden email]
Subject: Re: [ops-users] Firefox problem?

 

Hello Peter,

Try this;

<xf:model id="main-model"> 
   
<xf:instance id="instance"> 
   <instance xmlns=""> 
      <form xmlns="">
         <input1>input1</input1> 
      </form>
   </instance> 
</xf:instance> 
</xf:model> 


Kind regards,

-Martin


Peter Kolarov wrote:

Hi all, 
 
I have tried this very simple XForm test below on somewhat recent OPS build
and in Firefox it displays the input box for one second and than it hides
it, only the section and help(?) stays on the screen, IE works fine, also
XForm sandbox on ops site renders it fine. Any hints?
 
-peter
 
<html:html xmlns:html="http://www.w3.org/1999/xhtml" 
           xmlns:xf="http://www.w3.org/2002/xforms"> 
 
<html:head> 
 
<xf:model id="main-model"> 
   
<xf:instance id="instance"> 
<instance xmlns=""> 
  <input1>input1</input1> 
</instance> 
</xf:instance> 
   
</xf:model> 
 
</html:head> 
 
<html:body> 
 
<xf:group ref="instance('instance')"> 
  <xf:label>Section</xf:label> 
 
<xf:input id="input1" ref="input1"> 
  <xf:label>Input:</xf:label> 
  <xf:hint>Hint</xf:hint> 
  <xf:alert>Invalid value</xf:alert> 
  <xf:help>Help</xf:help> 
</xf:input> 
 
</xf:group> 
 
</html:body> 
 
</html:html>
 
 
 
  
 
 
 



 
 
 
 
--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: [hidden email]
For general help: [hidden email]
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
  

 

-- 
Martin Mohnhaupt
Nice Data Systems
Rue de Lyon 42 - CH 1203 GENEVE
Tél: +41 (0) 22 344 11 39
Mob: +41 (0) 78 636 00 75
Email: [hidden email]
Web: http://www.nicedata.com
Skype: martin.mohnhaupt
Action Carbone: http://www.actioncarbone.org


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox problem?

Henrik Pettersen
In reply to this post by Peter Kolarov-2
Peter,

I've seen this behaviour before (box pops up for ab. 0.5 secondand disappears), and ususally happens when I hit refresh (F5) after uploading some changes to the xforms instance. I get around this by forcing a hard refresh in firefox, holding down the left shift button as I hit the refresh button.

However, it might be a bug, of course: Can you send a runnable example to this mailing list?

Henrik

On 12/7/06, Peter Kolarov <[hidden email]> wrote:
Hi all,

I have tried this very simple XForm test below on somewhat recent OPS build
and in Firefox it displays the input box for one second and than it hides
it, only the section and help(?) stays on the screen, IE works fine, also
XForm sandbox on ops site renders it fine. Any hints?

-peter

<html:html xmlns:html="http://www.w3.org/1999/xhtml"
           xmlns:xf="http://www.w3.org/2002/xforms">

<html:head>

<xf:model id="main-model">

<xf:instance id="instance">
<instance xmlns="">
  <input1>input1</input1>
</instance>
</xf:instance>

</xf:model>

</html:head>

<html:body>

<xf:group ref="instance('instance')">
  <xf:label>Section</xf:label>

<xf:input id="input1" ref="input1">
  <xf:label>Input:</xf:label>
  <xf:hint>Hint</xf:hint>
  <xf:alert>Invalid value</xf:alert>
  <xf:help>Help</xf:help>
</xf:input>

</xf:group>

</html:body>

</html:html>






--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto: [hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Firefox problem?

Peter Kolarov-2

Henrik,

 

Sure the runnable code is actually in this email at at the bottom – its just that simple xhtml doc...

The problem goes away when there is more then one Xform controls on the page – thats my current „fix“.

 

-peter

 


From: Henrik Pettersen [mailto:[hidden email]]
Sent: 11. decembra 2006 11:51
To: [hidden email]
Subject: Re: [ops-users] Firefox problem?

 

Peter,

I've seen this behaviour before (box pops up for ab. 0.5 secondand disappears), and ususally happens when I hit refresh (F5) after uploading some changes to the xforms instance. I get around this by forcing a hard refresh in firefox, holding down the left shift button as I hit the refresh button.

However, it might be a bug, of course: Can you send a runnable example to this mailing list?

Henrik

On 12/7/06, Peter Kolarov <[hidden email]> wrote:

Hi all,

I have tried this very simple XForm test below on somewhat recent OPS build
and in Firefox it displays the input box for one second and than it hides
it, only the section and help(?) stays on the screen, IE works fine, also
XForm sandbox on ops site renders it fine. Any hints?

-peter

<html:html xmlns:html="http://www.w3.org/1999/xhtml"
           xmlns:xf="http://www.w3.org/2002/xforms">

<html:head>

<xf:model id="main-model">

<xf:instance id="instance">
<instance xmlns="">
  <input1>input1</input1>
</instance>
</xf:instance>

</xf:model>

</html:head>

<html:body>

<xf:group ref="instance('instance')">
  <xf:label>Section</xf:label>

<xf:input id="input1" ref="input1">
  <xf:label>Input:</xf:label>
  <xf:hint>Hint</xf:hint>
  <xf:alert>Invalid value</xf:alert>
  <xf:help>Help</xf:help>
</xf:input>

</xf:group>

</html:body>

</html:html>






--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto: [hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

 



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox problem?

Henrik Pettersen
Peter,

Sorry, I missed that. What version of Orbeon Forms are you running?

Henrik

On 12/11/06, Peter Kolarov <[hidden email]> wrote:

>
>
>
>
> Henrik,
>
>
>
> Sure the runnable code is actually in this email at at the bottom – its just
> that simple xhtml doc...
>
> The problem goes away when there is more then one Xform controls on the page
> – thats my current „fix".
>
>
>
> -peter
>
>
>
>  ________________________________
>
>
> From: Henrik Pettersen [mailto:[hidden email]]
>  Sent: 11. decembra 2006 11:51
>  To: [hidden email]
>  Subject: Re: [ops-users] Firefox problem?
>
>
>
>
> Peter,
>
>  I've seen this behaviour before (box pops up for ab. 0.5 secondand
> disappears), and ususally happens when I hit refresh (F5) after uploading
> some changes to the xforms instance. I get around this by forcing a hard
> refresh in firefox, holding down the left shift button as I hit the refresh
> button.
>
>  However, it might be a bug, of course: Can you send a runnable example to
> this mailing list?
>
>  Henrik
>
>
> On 12/7/06, Peter Kolarov < [hidden email]> wrote:
>
> Hi all,
>
>  I have tried this very simple XForm test below on somewhat recent OPS build
>  and in Firefox it displays the input box for one second and than it hides
>  it, only the section and help(?) stays on the screen, IE works fine, also
>  XForm sandbox on ops site renders it fine. Any hints?
>
>  -peter
>
>  <html:html xmlns:html="http://www.w3.org/1999/xhtml"
>             xmlns:xf="http://www.w3.org/2002/xforms">
>
>  <html:head>
>
>  <xf:model id="main-model">
>
>  <xf:instance id="instance">
>  <instance xmlns="">
>    <input1>input1</input1>
>  </instance>
>  </xf:instance>
>
>  </xf:model>
>
>  </html:head>
>
>  <html:body>
>
>  <xf:group ref="instance('instance')">
>    <xf:label>Section</xf:label>
>
>  <xf:input id="input1" ref="input1">
>    <xf:label>Input:</xf:label>
>    <xf:hint>Hint</xf:hint>
>    <xf:alert>Invalid value</xf:alert>
>    <xf:help>Help</xf:help>
>  </xf:input>
>
>  </xf:group>
>
>  </html:body>
>
>  </html:html>
>
>
>
>
>
>
>  --
>  You receive this message as a subscriber of the [hidden email]
> mailing list.
>  To unsubscribe: mailto:
> [hidden email]
>  For general help: mailto:[hidden email]?subject=help
>  ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>
>
> --
> You receive this message as a subscriber of the [hidden email]
> mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Firefox problem?

Peter Kolarov-2
Henrik,

Some recent nightly build, but I think it did that even on the OPS 3.1
release.

-peter

-----Original Message-----
From: Henrik Pettersen [mailto:[hidden email]]
Sent: 11. decembra 2006 14:26
To: [hidden email]
Subject: Re: [ops-users] Firefox problem?

Peter,

Sorry, I missed that. What version of Orbeon Forms are you running?

Henrik

On 12/11/06, Peter Kolarov <[hidden email]> wrote:
>
>
>
>
> Henrik,
>
>
>
> Sure the runnable code is actually in this email at at the bottom - its
just
> that simple xhtml doc...
>
> The problem goes away when there is more then one Xform controls on the
page

> - thats my current "fix".
>
>
>
> -peter
>
>
>
>  ________________________________
>
>
> From: Henrik Pettersen [mailto:[hidden email]]
>  Sent: 11. decembra 2006 11:51
>  To: [hidden email]
>  Subject: Re: [ops-users] Firefox problem?
>
>
>
>
> Peter,
>
>  I've seen this behaviour before (box pops up for ab. 0.5 secondand
> disappears), and ususally happens when I hit refresh (F5) after uploading
> some changes to the xforms instance. I get around this by forcing a hard
> refresh in firefox, holding down the left shift button as I hit the
refresh

> button.
>
>  However, it might be a bug, of course: Can you send a runnable example to
> this mailing list?
>
>  Henrik
>
>
> On 12/7/06, Peter Kolarov < [hidden email]> wrote:
>
> Hi all,
>
>  I have tried this very simple XForm test below on somewhat recent OPS
build

>  and in Firefox it displays the input box for one second and than it hides
>  it, only the section and help(?) stays on the screen, IE works fine, also
>  XForm sandbox on ops site renders it fine. Any hints?
>
>  -peter
>
>  <html:html xmlns:html="http://www.w3.org/1999/xhtml"
>             xmlns:xf="http://www.w3.org/2002/xforms">
>
>  <html:head>
>
>  <xf:model id="main-model">
>
>  <xf:instance id="instance">
>  <instance xmlns="">
>    <input1>input1</input1>
>  </instance>
>  </xf:instance>
>
>  </xf:model>
>
>  </html:head>
>
>  <html:body>
>
>  <xf:group ref="instance('instance')">
>    <xf:label>Section</xf:label>
>
>  <xf:input id="input1" ref="input1">
>    <xf:label>Input:</xf:label>
>    <xf:hint>Hint</xf:hint>
>    <xf:alert>Invalid value</xf:alert>
>    <xf:help>Help</xf:help>
>  </xf:input>
>
>  </xf:group>
>
>  </html:body>
>
>  </html:html>
>
>
>
>
>
>
>  --
>  You receive this message as a subscriber of the [hidden email]
> mailing list.
>  To unsubscribe: mailto:
> [hidden email]
>  For general help: mailto:[hidden email]?subject=help
>  ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>
>
> --
> You receive this message as a subscriber of the [hidden email]
> mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>




--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox problem?

John Unwin
In reply to this post by Peter Kolarov-2
Peter,

I can't reproduce your error (I get an objection to the extra "xforms:label" in the "xforms:group") but I have seen similar behaviour. It always seemed that it was a problem with my XML model and/or the linkage with the input controls. I think that when there is nothing to display in the instance, the input controls go crazy sometimes.

John

Peter Kolarov wrote:

Henrik,

 

Sure the runnable code is actually in this email at at the bottom – its just that simple xhtml doc...

The problem goes away when there is more then one Xform controls on the page – thats my current „fix“.

 

-peter

 


From: Henrik Pettersen [[hidden email]]
Sent: 11. decembra 2006 11:51
To: [hidden email]
Subject: Re: [ops-users] Firefox problem?

 

Peter,

I've seen this behaviour before (box pops up for ab. 0.5 secondand disappears), and ususally happens when I hit refresh (F5) after uploading some changes to the xforms instance. I get around this by forcing a hard refresh in firefox, holding down the left shift button as I hit the refresh button.

However, it might be a bug, of course: Can you send a runnable example to this mailing list?

Henrik

On 12/7/06, Peter Kolarov <[hidden email]> wrote:

Hi all,

I have tried this very simple XForm test below on somewhat recent OPS build
and in Firefox it displays the input box for one second and than it hides
it, only the section and help(?) stays on the screen, IE works fine, also
XForm sandbox on ops site renders it fine. Any hints?

-peter

<html:html xmlns:html="http://www.w3.org/1999/xhtml"
           xmlns:xf="http://www.w3.org/2002/xforms">

<html:head>

<xf:model id="main-model">

<xf:instance id="instance">
<instance xmlns="">
  <input1>input1</input1>
</instance>
</xf:instance>

</xf:model>

</html:head>

<html:body>

<xf:group ref="instance('instance')">
  <xf:label>Section</xf:label>

<xf:input id="input1" ref="input1">
  <xf:label>Input:</xf:label>
  <xf:hint>Hint</xf:hint>
  <xf:alert>Invalid value</xf:alert>
  <xf:help>Help</xf:help>
</xf:input>

</xf:group>

</html:body>

</html:html>






--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto: [hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

 


-- You receive this message as a subscriber of the [hidden email] mailing list. To unsubscribe: [hidden email] For general help: [hidden email] ObjectWeb mailing lists service home page: http://www.objectweb.org/wws


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox problem?

Erik Bruchez
Administrator
In reply to this post by Peter Kolarov-2
Peter,

I can't reproduce this with a recent build or in the online sandbox:

   http://www.orbeon.com/ops/goto-example/xforms-sandbox

-Erik

Peter Kolarov wrote:

> Hi all,
>
> I have tried this very simple XForm test below on somewhat recent OPS build
> and in Firefox it displays the input box for one second and than it hides
> it, only the section and help(?) stays on the screen, IE works fine, also
> XForm sandbox on ops site renders it fine. Any hints?
>
> -peter
>
> <html:html xmlns:html="http://www.w3.org/1999/xhtml"
>            xmlns:xf="http://www.w3.org/2002/xforms">
>  
> <html:head>
>  
> <xf:model id="main-model">
>    
> <xf:instance id="instance">
> <instance xmlns="">
>   <input1>input1</input1>
> </instance>
> </xf:instance>
>    
> </xf:model>
>  
> </html:head>
>  
> <html:body>
>  
> <xf:group ref="instance('instance')">
>   <xf:label>Section</xf:label>
>  
> <xf:input id="input1" ref="input1">
>   <xf:label>Input:</xf:label>
>   <xf:hint>Hint</xf:hint>
>   <xf:alert>Invalid value</xf:alert>
>   <xf:help>Help</xf:help>
> </xf:input>
>  
> </xf:group>
>  
> </html:body>
>  
> </html:html>
--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Firefox problem?

Peter Kolarov-2
Erik,

It can not be reproduced in the sandbox, only if it is by itself on the page
with no other elements. I have not tried the most recent night build either.

-peter

-----Original Message-----
From: Erik Bruchez [mailto:[hidden email]] On Behalf Of Erik Bruchez
Sent: 12. decembra 2006 0:10
To: [hidden email]
Subject: Re: [ops-users] Firefox problem?

Peter,

I can't reproduce this with a recent build or in the online sandbox:

   http://www.orbeon.com/ops/goto-example/xforms-sandbox

-Erik

Peter Kolarov wrote:
> Hi all,
>
> I have tried this very simple XForm test below on somewhat recent OPS
build

> and in Firefox it displays the input box for one second and than it hides
> it, only the section and help(?) stays on the screen, IE works fine, also
> XForm sandbox on ops site renders it fine. Any hints?
>
> -peter
>
> <html:html xmlns:html="http://www.w3.org/1999/xhtml"
>            xmlns:xf="http://www.w3.org/2002/xforms">
>  
> <html:head>
>  
> <xf:model id="main-model">
>    
> <xf:instance id="instance">
> <instance xmlns="">
>   <input1>input1</input1>
> </instance>
> </xf:instance>
>    
> </xf:model>
>  
> </html:head>
>  
> <html:body>
>  
> <xf:group ref="instance('instance')">
>   <xf:label>Section</xf:label>
>  
> <xf:input id="input1" ref="input1">
>   <xf:label>Input:</xf:label>
>   <xf:hint>Hint</xf:hint>
>   <xf:alert>Invalid value</xf:alert>
>   <xf:help>Help</xf:help>
> </xf:input>
>  
> </xf:group>
>  
> </html:body>
>  
> </html:html>
--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Firefox problem?

Erik Bruchez
Administrator
Peter,

I don't reproduce this without going through the sandbox either.

-Erik

Peter Kolarov wrote:

> Erik,
>
> It can not be reproduced in the sandbox, only if it is by itself on the page
> with no other elements. I have not tried the most recent night build either.
>
> -peter
>
> -----Original Message-----
> From: Erik Bruchez [mailto:[hidden email]] On Behalf Of Erik Bruchez
> Sent: 12. decembra 2006 0:10
> To: [hidden email]
> Subject: Re: [ops-users] Firefox problem?
>
> Peter,
>
> I can't reproduce this with a recent build or in the online sandbox:
>
>    http://www.orbeon.com/ops/goto-example/xforms-sandbox
>
> -Erik
>
> Peter Kolarov wrote:
>> Hi all,
>>
>> I have tried this very simple XForm test below on somewhat recent OPS
> build
>> and in Firefox it displays the input box for one second and than it hides
>> it, only the section and help(?) stays on the screen, IE works fine, also
>> XForm sandbox on ops site renders it fine. Any hints?
>>
>> -peter
>>
>> <html:html xmlns:html="http://www.w3.org/1999/xhtml"
>>            xmlns:xf="http://www.w3.org/2002/xforms">
>>  
>> <html:head>
>>  
>> <xf:model id="main-model">
>>    
>> <xf:instance id="instance">
>> <instance xmlns="">
>>   <input1>input1</input1>
>> </instance>
>> </xf:instance>
>>    
>> </xf:model>
>>  
>> </html:head>
>>  
>> <html:body>
>>  
>> <xf:group ref="instance('instance')">
>>   <xf:label>Section</xf:label>
>>  
>> <xf:input id="input1" ref="input1">
>>   <xf:label>Input:</xf:label>
>>   <xf:hint>Hint</xf:hint>
>>   <xf:alert>Invalid value</xf:alert>
>>   <xf:help>Help</xf:help>
>> </xf:input>
>>  
>> </xf:group>
>>  
>> </html:body>
>>  
>> </html:html>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

--
Orbeon Forms - Web Forms for the Enterprise Done the Right Way
http://www.orbeon.com/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws