Hi there,
is there a way to use the form runner in a seperate deployment kind of way? So i have my own web app that has a servlet that creates form builder alike xhtml, is it possible to run this in the form runner without altering the original orbeon.war? like the way the OrbeonXFormsFilter is working and if so....how? Or by calling a servlet or something like that? regards Ramon -- 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
|
Not out of the box, as currently Form Runner always pulls forms through the persistence layer.
Now if you are ok with a pull model, you could write your own persistence layer and provide your forms through the persistence API.
-Erik On Mon, Mar 7, 2011 at 7:24 AM, Ramon de Beijer <[hidden email]> wrote: Hi there, -- 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 |
In reply to this post by Ramon de Beijer-2
Is there a simple way to check if all components in an <fr:section> are
relevant the case is I want section 2 only to become visible if section 1 is totally filled in. Regards Ramon -- 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 |
Hi Ramon,
I'm not entirely sure about this (as I don't use the form runner, I still write by hand), but adding some constraints to the xforms model will most likely do the job. Best, Robin Diederen -----Oorspronkelijk bericht----- Van: Ramon de Beijer [mailto:[hidden email]] Namens Ramon de Beijer Verzonden: Tuesday, March 08, 2011 1:43 PM Aan: [hidden email] Onderwerp: [ops-users] Is there a simple way to check if all components in an <fr:section> are relevant Is there a simple way to check if all components in an <fr:section> are relevant the case is I want section 2 only to become visible if section 1 is totally filled in. Regards Ramon -- 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
|
In reply to this post by Ramon de Beijer-2
Ramon,
If you want every field of section 1 non-empty, you could use an expression like this for the visibility of section 2: not(exists(/*/section-1/*[not(normalize-space())]))
assuming "section-1" is the id of the first section. Now in your question you mention relevance, which is not the same as "filled in", so I don't know if I answered on topic.
-Erik
On Tue, Mar 8, 2011 at 4:43 AM, Ramon de Beijer <[hidden email]> wrote: Is there a simple way to check if all components in an <fr:section> are relevant -- 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 |
Its party answer to my question, but as you already assumed its not the complete answer for me. I have attached an example form i made with Form Builder, which has 2 sections 'section_personal' and 'section_extra' i want 'section_extra' only to become visible if all fields in 'section_personal' are valid, so i mean filled in and filled in correctly, so fields like 'first name' and 'last name' are mandatory and the field 'servicenumber' is not only mandatory but should also match the 11-test (a test used in the Netherlands to check Citizen Service Number for taxes and that kinda things) And only then i want to show the 'section_extra'. Can that be done in a simple way? Perhaps u could fill in the way you would do it for this very example regards Ramon On 03/09/2011 06:11 AM, Erik Bruchez wrote: Ramon, -- 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 example.txt (13K) Download Attachment |
Ramon,
I have a similar situation and I solved it with fr:error-summary control. Each section of your xform should have this control and populate the error count to your section instance which could be used in relevancy for the next section.
Here is what you should do.
On Wed, Mar 9, 2011 at 2:45 AM, Ramon de Beijer <[hidden email]> wrote:
-- 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 |
Hi Binesh,
It seems that the construction you mention here works when i use xforms:group instead of fr:section anyone who knows why? regards Ramon On 03/09/2011 09:57 AM, Binesh Gummadi wrote: Ramon, -- 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 |