[jboss-user] [JBoss jBPM] - Re: Parsing error in forms

2007-05-15 Thread Riket44
Ok, thank you. I succeded in doing what i wanted like that : | h:inputText | value=#{var['tracking number']} readonly=true | /h:inputText | It show the value of tracking number and it's only readable. Thanks and bye :) View the original post :

[jboss-user] [JBoss jBPM] - Re: Parsing error in forms

2007-05-14 Thread kukeltje
have a good look at both examples you give... #{var['tracking number']} vs #{tracking number} View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045391#4045391 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045391

[jboss-user] [JBoss jBPM] - Re: Parsing error in forms

2007-05-14 Thread Riket44
In the WebSale example, the first user define the variable like that : | value=#{var['varName']} | and get the value of this in another form like that: | value=#{varName} | I don't understand... View the original post :

[jboss-user] [JBoss jBPM] - Re: Parsing error in forms

2007-05-14 Thread kukeltje
#{varName} does work, #{var Name} does not. The latter because the system interprets the space. #{var['varName']} and #{var['var Name']} both work because of the '' View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045418#4045418 Reply to the post :