regarding form deveoping in orbeon form builer

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

regarding form deveoping in orbeon form builer

vidhyanatarajan



hi karthick....thanks for your kind reply....

    I have done what you told in the last message...everything is fine and am developing the sample application now there i want to give two constraints for a particular field... i have done for single constraint its working fine....for example ...
Pincode is my field ...
i want to give 2  constraints like (should accept 6 integers and should start with '6')
i have given like that in constraint [string-length()=6 for accept 6 integers ]
and am giving like [string-length()=6 & starts-with('6')for accept 6 integers and should start with '6'] but it is giving error....

And also i want to know how to give the "visibility" , "read-only" , "Calculated value" , "Initial value" for the fields..........

expecting rpy........

thanks and regards,
vidhya
Reply | Threaded
Open this post in threaded view
|

Out of Office AutoReply: regarding form deveoping in orbeon form builer

pappleby
Out of Office AutoReply: regarding form deveoping in orbeon form builer

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

 

Reply | Threaded
Open this post in threaded view
|

Re: regarding form deveoping in orbeon form builer

karthik Jayaraman
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 ''

Reply | Threaded
Open this post in threaded view
|

Out of Office AutoReply: regarding form deveoping in orbeon form builer

pappleby
Out of Office AutoReply: regarding form deveoping in orbeon form builer

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

 

Reply | Threaded
Open this post in threaded view
|

Re: regarding form deveoping in orbeon form builer

vidhyanatarajan
In reply to this post by karthik Jayaraman
hi karthick,
thanks for the reply....

Please tell me about

 1. database connectivity of orbeon..
 2. Indexing...
 3. Signature...
your answers will be useful for me....


--- On Wed, 14/7/10, karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]> wrote:

From: karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]>
Subject: Re: regarding form deveoping in orbeon form builer
To: "vidhyanatarajan" <[hidden email]>
Date: Wednesday, 14 July, 2010, 6:37 AM

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 ''




View message @ http://orbeon-forms-ops-users.24843.n4.nabble.com/regarding-form-deveoping-in-orbeon-form-builer-tp2286030p2288187.html
To unsubscribe from regarding form deveoping in orbeon form builer, click here.


Reply | Threaded
Open this post in threaded view
|

Out of Office AutoReply: regarding form deveoping in orbeon form builer

pappleby
Out of Office AutoReply: regarding form deveoping in orbeon form builer

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

 

Reply | Threaded
Open this post in threaded view
|

Re: regarding form deveoping in orbeon form builer

vidhyanatarajan
In reply to this post by karthik Jayaraman
hi ...
Is it possible to chat with you...(bcoz i have many questions ...to ask... )


--- On Wed, 14/7/10, karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]> wrote:

From: karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]>
Subject: Re: regarding form deveoping in orbeon form builer
To: "vidhyanatarajan" <[hidden email]>
Date: Wednesday, 14 July, 2010, 6:37 AM

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 ''




View message @ http://orbeon-forms-ops-users.24843.n4.nabble.com/regarding-form-deveoping-in-orbeon-form-builer-tp2286030p2288187.html
To unsubscribe from regarding form deveoping in orbeon form builer, click here.


Reply | Threaded
Open this post in threaded view
|

Out of Office AutoReply: regarding form deveoping in orbeon form builer

pappleby
Out of Office AutoReply: regarding form deveoping in orbeon form builer

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

 

Reply | Threaded
Open this post in threaded view
|

Re: regarding form deveoping in orbeon form builer

vidhyanatarajan
In reply to this post by karthik Jayaraman

can u tell me about database (like postgres, mysql etc...)support in orbeon....
with example...
--- On Wed, 14/7/10, karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]> wrote:

From: karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]>
Subject: Re: regarding form deveoping in orbeon form builer
To: "vidhyanatarajan" <[hidden email]>
Date: Wednesday, 14 July, 2010, 6:37 AM

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 ''




View message @ http://orbeon-forms-ops-users.24843.n4.nabble.com/regarding-form-deveoping-in-orbeon-form-builer-tp2286030p2288187.html
To unsubscribe from regarding form deveoping in orbeon form builer, click here.


Reply | Threaded
Open this post in threaded view
|

Out of Office AutoReply: regarding form deveoping in orbeon form builer

pappleby
Out of Office AutoReply: regarding form deveoping in orbeon form builer

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

 

Reply | Threaded
Open this post in threaded view
|

Re: regarding form deveoping in orbeon form builer

vidhyanatarajan
In reply to this post by karthik Jayaraman

can u tell me about database (like postgres, mysql etc...)support in orbeon....
with example...
--- On Wed, 14/7/10, karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]> wrote:

From: karthik Jayaraman [via Orbeon Forms (ops-users)] <[hidden email]>
Subject: Re: regarding form deveoping in orbeon form builer
To: "vidhyanatarajan" <[hidden email]>
Date: Wednesday, 14 July, 2010, 6:37 AM

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 ''




View message @ http://orbeon-forms-ops-users.24843.n4.nabble.com/regarding-form-deveoping-in-orbeon-form-builer-tp2286030p2288187.html
To unsubscribe from regarding form deveoping in orbeon form builer, click here.


Reply | Threaded
Open this post in threaded view
|

Out of Office AutoReply: regarding form deveoping in orbeon form builer

pappleby
Out of Office AutoReply: regarding form deveoping in orbeon form builer

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

 

Reply | Threaded
Open this post in threaded view
|

Re: regarding form deveoping in orbeon form builer

karthik Jayaraman
This post was updated on .
In reply to this post by vidhyanatarajan
CONTENTS DELETED
The author has deleted this message.
Reply | Threaded
Open this post in threaded view
|

Out of Office AutoReply: regarding form deveoping in orbeon form builer

pappleby
Out of Office AutoReply: regarding form deveoping in orbeon form builer

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