hi, am new to this orbeon Forms and ...i am learning now to design a form using orbeon form builder...Most probably i designed the form ...and I dont know where the designed form will be saved...so let me know where the designed form will be saved (the which is designed through orbeon form builder)
thanks and regards srividhya.N (Junior research fellow) |
..By default orbeon uses Exist database(an xml based DB) to store your forms. But you can implement MySql and oracle persistent layers by which the form is stored in as xml file in the corresponding database.
|
|
In reply to this post by karthik Jayaraman
hai,
I had download the orbeon 3.8 CE(Community Edition) version and i have installed in the apache-romcat server. If i run orbeon form builder (http://localhost:8080/orbeon) there are many forms displayed (like Bookshelf Form, DMV-14 Form, Controls Form, Contact Form....) in left side under the "FORM Builder" ...so like that how can i display my form which is developed through the orbeon form builder..... |
This post was updated on .
Yep ! Its easy. Design a forms using form builder, save it, publish it. For example if my form name is test-app and form name is test-form, the url to access the form wud be
http://localhost:8080/test-app/test-form/new Navigate to the orbeon\WEB-INF\resources directory and open the file named apps-list.xml. This file contains the list of applications listed in the left column in form builder home page. Add the following line to the file --------------------------------------------------------------------------------------------- <application id="fr/test-app/test-form/new" label="karthik Form"/> --------------------------------------------------------------------------------------------- Inside any section tag. Now open the url (http://localhost:8080/orbeon), You could see the form inside the corresponding section. Bye ! |
I am out of the office until 26th July *********************************************************************************************** This email, including any attachment, is confidential and may be legally privileged. If you are not the intended recipient or if you have received this email in error, please inform the sender immediately by reply and delete all copies from your system. Do not retain, copy, disclose, distribute or otherwise use any of its contents.
Whilst we have taken reasonable precautions to ensure that this email has been swept for computer viruses, we cannot guarantee that this email does not contain such material and we therefore advise you to carry out your own virus checks. We do not accept liability for any damage or losses sustained as a result of such material.
Please note that incoming and outgoing email communications passing through our IT systems may be monitored and/or intercepted by us solely to determine whether the content is business related and compliant with company standards. *********************************************************************************************** The Stationery Office Limited is registered in England No. 3049649 at 10 Eastbourne Terrace, London, W2 6LG
|
In reply to this post by karthik Jayaraman
|
I am out of the office until 26th July *********************************************************************************************** This email, including any attachment, is confidential and may be legally privileged. If you are not the intended recipient or if you have received this email in error, please inform the sender immediately by reply and delete all copies from your system. Do not retain, copy, disclose, distribute or otherwise use any of its contents.
Whilst we have taken reasonable precautions to ensure that this email has been swept for computer viruses, we cannot guarantee that this email does not contain such material and we therefore advise you to carry out your own virus checks. We do not accept liability for any damage or losses sustained as a result of such material.
Please note that incoming and outgoing email communications passing through our IT systems may be monitored and/or intercepted by us solely to determine whether the content is business related and compliant with company standards. *********************************************************************************************** The Stationery Office Limited is registered in England No. 3049649 at 10 Eastbourne Terrace, London, W2 6LG
|
In reply to this post by karthik Jayaraman
|
I am out of the office until 26th July *********************************************************************************************** This email, including any attachment, is confidential and may be legally privileged. If you are not the intended recipient or if you have received this email in error, please inform the sender immediately by reply and delete all copies from your system. Do not retain, copy, disclose, distribute or otherwise use any of its contents.
Whilst we have taken reasonable precautions to ensure that this email has been swept for computer viruses, we cannot guarantee that this email does not contain such material and we therefore advise you to carry out your own virus checks. We do not accept liability for any damage or losses sustained as a result of such material.
Please note that incoming and outgoing email communications passing through our IT systems may be monitored and/or intercepted by us solely to determine whether the content is business related and compliant with company standards. *********************************************************************************************** The Stationery Office Limited is registered in England No. 3049649 at 10 Eastbourne Terrace, London, W2 6LG
|
In reply to this post by vidhyanatarajan
For instance if your control name is zipCode_data which is done by clicking Control Details icon,the constraint you require will be as follows
starts-with($zipCode_data,'6') and string-length($zipCode_data) = 5 the visibility,read-only fields should contain a xforms function which returns a boolean value as above expression For using xforms function pls refer the following link http://www.w3schools.com/Xpath/xpath_functions.asp And regarding calculated value - it is also a xforms function which returns any value which should be populated in the field finally and initial value is also a xforms function which should return a value populated during the form initialization. E.g of calculated value or initial value if( string-length($zipCode_data) = 5 and $zipCode_data castable as xs:integer) then number($zipCode_data)-1 else '' |
I am out of the office until 26th July *********************************************************************************************** This email, including any attachment, is confidential and may be legally privileged. If you are not the intended recipient or if you have received this email in error, please inform the sender immediately by reply and delete all copies from your system. Do not retain, copy, disclose, distribute or otherwise use any of its contents.
Whilst we have taken reasonable precautions to ensure that this email has been swept for computer viruses, we cannot guarantee that this email does not contain such material and we therefore advise you to carry out your own virus checks. We do not accept liability for any damage or losses sustained as a result of such material.
Please note that incoming and outgoing email communications passing through our IT systems may be monitored and/or intercepted by us solely to determine whether the content is business related and compliant with company standards. *********************************************************************************************** The Stationery Office Limited is registered in England No. 3049649 at 10 Eastbourne Terrace, London, W2 6LG
|
Free forum by Nabble | Edit this page |