Hi,
Is there a location that I can download the source code of Orbeon and more documentation for example covering \WEB-INF\lib\orbeon-*? Cheers, Trond -- 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 OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
Trond,
To get the source, and for some information on how to setup your Java environment, see: http://wiki.orbeon.com/forms/doc/contributor-guide/java-development And you can find some documentation here covering how the war file is put together: http://www.orbeon.com/ops/doc/integration-packaging Alex |
Hello,
can I use the evaluate function for dynamical reference? I have something like the following situation: <xforms:instance id="week"> <data> <mon/> <tue/> <wed/> <thu/> </data> </xforms:instance> These days need to be filled with some data coming from some select1 dropDowns. But before that I have select1 to choose a day.(this fills my "day-instance") I would love to test which day is selected and depending on that fill the day in my "week" instance. But AVTs are not supported at ref: <xforms:select1 ref="instance('week')/{instance('day')}"... -- 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 OW2 mailing lists service home page: http://www.ow2.org/wws |
Administrator
|
> can I use the evaluate function for dynamical reference?
> > I have something like the following situation: > > <xforms:instance id="week"> > <data> > <mon/> > <tue/> > <wed/> > <thu/> > </data> > </xforms:instance> > > These days need to be filled with some data coming from some select1 > dropDowns. > > But before that I have select1 to choose a day.(this fills my "day- > instance") > > > I would love to test which day is selected and depending on that > fill the day in my "week" instance. > But AVTs are not supported at ref: > > <xforms:select1 ref="instance('week')/{instance('day')}"... You could write something like: <xforms:select1 ref="instance('week')/*[local-name() = instance('day')]"... -Erik -- 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 OW2 mailing lists service home page: http://www.ow2.org/wws |
Erik,
thx! This saved me so much time! Am 09.05.2009 um 00:27 schrieb Erik Bruchez: >> can I use the evaluate function for dynamical reference? >> >> I have something like the following situation: >> >> <xforms:instance id="week"> >> <data> >> <mon/> >> <tue/> >> <wed/> >> <thu/> >> </data> >> </xforms:instance> >> >> These days need to be filled with some data coming from some >> select1 dropDowns. >> >> But before that I have select1 to choose a day.(this fills my "day- >> instance") >> >> >> I would love to test which day is selected and depending on that >> fill the day in my "week" instance. >> But AVTs are not supported at ref: >> >> <xforms:select1 ref="instance('week')/{instance('day')}"... > > > You could write something like: > > <xforms:select1 ref="instance('week')/*[local-name() = > instance('day')]"... > > -Erik > > -- > 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 > OW2 mailing lists service home page: http://www.ow2.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 OW2 mailing lists service home page: http://www.ow2.org/wws |
Free forum by Nabble | Edit this page |