Re: Submitting a value from a Form

2012-12-21 Thread nquirynen
The problem here is exactly what the error says: transactionQuote is null at the moment he's trying to set pickupQuoteID. The submit event is a new request so non persisted fields are gone... I'm not sure what you are trying to achieve here, but I think you need to use the context parameter of the

Re: Submitting a value from a Form

2012-12-20 Thread mateen
I get this error when submiiting the form Failure writing parameter 'value' of component remittance/Teller:dispensecashforquoteid: Property 'transactionQuote' (within property expression 'transactionQuote.pickupQuoteID', of com.coinfling.web.pages.remittance.Teller@2dfc48fc) is null. -- View th

Re: Submitting a value from a Form

2012-12-20 Thread mateen
Confirm recipient's identity by reviewing ID Confirm Code I have done this, the value is in the textfield, when i press the submit form it say, Failure writing parameter 'value' of component remittance/Teller:dispensecashforq

Re: Submitting a value from a Form

2012-12-20 Thread Thiago H de Paula Figueiredo
On Thu, 20 Dec 2012 14:36:15 -0200, Lance Java wrote: Never use ${...} in attributes. More precisely, never use ${} in attributes that are component parameters. For example, a context="transactionQuote.pickupQuoteID">.. is perfectly fine, because 'class' is not a parameter. On the other

Re: Submitting a value from a Form

2012-12-20 Thread Lance Java
By the way... the tapestry-dev list is for developers of tapestry. Messages such as this should be posted on the tapestry-users list. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Submitting-a-value-from-a-Form-tp5718882p5718887.html Sent from the Tapestry - Dev mailing

Re: Submitting a value from a Form

2012-12-20 Thread Lance Java
Never use ${...} in attributes. Use t:value="transactionQuote.pickupQuoteID" instead and tapestry will create two way property binding which it can then get() and set(). -- View this message in context: http://tapestry.1045711.n5.nabble.com/Submitting-a-value-from-a-Form-tp5718882p5718886.htm