Re: Tapestry 4.1.1 Hidden field truncates characters

2007-03-05 Thread Jesse Kuhnert

Yeah...I'm sure 'c' is claimed by one of the DataSqueezer
implementations for encoding data.

On 3/1/07, Julian Wood [EMAIL PROTECTED] wrote:

Have you tried setting encode to false on the hidden field?

J

On 1-Mar-07, at 5:41 AM, Peter Stavrinides wrote:

 Hi all,

 In my page I use a hidden field to store a name bound to  a string
 property, this works fine most of the time, but I have an unusual
 situation sometimes when I submit, and the value is a sequence of
 say three characters ('ccc'), it gets truncated. Surely someone has
 had a similar situation, have I missed something? might this have
 something to do with the type casting mechanism in the framework
 for the 'Hidden' component? As soon as I change the component to a
 TextField, magically it no longer truncates...  I do use JavaScript
 to submit, but that shouldn't make any difference, any ideas?

 This is the basic outline:
 script

 function SubmitForm(){
//some processing
document.forms[0].pname.value = document.getElementById
 ('CopiedPortfolio').value;
document.forms[0].submit();
 }
 /script

 form jwcid=@Form listener=listener:formSubmit method=post
input jwcid=[EMAIL PROTECTED] value=ognl:portfolioName/

--
Julian Wood [EMAIL PROTECTED]

Software Engineer
Teaching  Learning Centre
University of Calgary

http://tlc.ucalgary.ca






--
Jesse Kuhnert
Tapestry/Dojo team member/developer

Open source based consulting work centered around
dojo/tapestry/tacos/hivemind. http://blog.opencomponentry.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tapestry 4.1.1 Hidden field truncates characters

2007-03-01 Thread Peter Stavrinides

Hi all,

In my page I use a hidden field to store a name bound to  a string 
property, this works fine most of the time, but I have an unusual 
situation sometimes when I submit, and the value is a sequence of say 
three characters ('ccc'), it gets truncated. Surely someone has had a 
similar situation, have I missed something? might this have something to 
do with the type casting mechanism in the framework for the 'Hidden' 
component? As soon as I change the component to a TextField, magically 
it no longer truncates...  I do use JavaScript to submit, but that 
shouldn't make any difference, any ideas?


This is the basic outline:
script

function SubmitForm(){
   //some processing
   document.forms[0].pname.value = 
document.getElementById('CopiedPortfolio').value;

   document.forms[0].submit();
}
/script

form jwcid=@Form listener=listener:formSubmit method=post
   input jwcid=[EMAIL PROTECTED] value=ognl:portfolioName/


   input id=CopiedPortfolio type=text value=


   input type=button onclick=SubmitForm() value=Create Portfolio
/form

I am forced to use this as a workaround:

span style=display:none;
   input jwcid=[EMAIL PROTECTED] value=ognl:portfolioName/
/span

Kind regards,
Peter

--
Peter Stavrinides
Albourne Partners (Cyprus) Ltd
Tel: +357 22 750652 

If you are not an intended recipient of this e-mail, please notify the sender, delete it and do not read, act upon, print, disclose, copy, retain or redistribute it. Please visit http://www.albourne.com/email.html for important additional terms relating to this e-mail. 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tapestry 4.1.1 Hidden field truncates characters

2007-03-01 Thread Julian Wood

Have you tried setting encode to false on the hidden field?

J

On 1-Mar-07, at 5:41 AM, Peter Stavrinides wrote:


Hi all,

In my page I use a hidden field to store a name bound to  a string  
property, this works fine most of the time, but I have an unusual  
situation sometimes when I submit, and the value is a sequence of  
say three characters ('ccc'), it gets truncated. Surely someone has  
had a similar situation, have I missed something? might this have  
something to do with the type casting mechanism in the framework  
for the 'Hidden' component? As soon as I change the component to a  
TextField, magically it no longer truncates...  I do use JavaScript  
to submit, but that shouldn't make any difference, any ideas?


This is the basic outline:
script

function SubmitForm(){
   //some processing
   document.forms[0].pname.value = document.getElementById 
('CopiedPortfolio').value;

   document.forms[0].submit();
}
/script

form jwcid=@Form listener=listener:formSubmit method=post
   input jwcid=[EMAIL PROTECTED] value=ognl:portfolioName/


--
Julian Wood [EMAIL PROTECTED]

Software Engineer
Teaching  Learning Centre
University of Calgary

http://tlc.ucalgary.ca