Couple of questions:

Why is it disable? To show a value? If so can you query the same function that set that value? (If its disabled the user can't change it).

Or if its set by something else, can you have that same setter update an invisible field? (as someone else suggested)

Vincent wrote:

Hi Andrel,

My intension is use html disabled="true" tag not tapestry tag.
Is there any solution for this?

regards,
Vincent
On 12/20/05, Andrei Chiritescu <[EMAIL PROTECTED]> wrote:
Is not possible(as far as I know). I also run into this kind of problem
and I would like to know is there is way of doing this.
For myself, I used a workaround ... so for each disabled input I added
an invisible field that is not disabled ... in this way the binding is
done through the invisible one.
For you it would look like :

<code>
<input type="text" disabled="true" jwcid="@TextField" value="ognl:sample"/>
<input type="text" style="display: none" jwcid="[EMAIL PROTECTED]" 
value="ognl:sample"/>
</code>

Regards, Andrei

Vincent wrote:

Hi all,

Is it possible to get the value from textfield which parameter is set
to disabled?

<code>
<input type="text" disabled="true" jwcid="@TextField" value="ognl:sample"/>
</code>

regards,
Vincent

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





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



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




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

Reply via email to