Here is the code I am using:
if(TableA.A.rawValue !=1)
{
this.presence = "hidden";
}
else if(TableA.A.rawValue == 1)
{
this.presence = "visible";
}
When the user checks the box the comments textbox is visible (else, it isn't visible).
The problem is that when the textbox is visible, the user is unable to enter any text. What am I missing?
Thanks.
Solved! Go to Solution.
Views
Replies
Total Likes
There was a readOnly access on the subform that holds the TextField.
I remember there being an issue over a year ago where under a specific set of circumstances that could happen to you. Note that there is no UI in designer to remove that so I had to do it in the XML source. Here is the updated sample.
Paul
Views
Replies
Total Likes
Did you make the field readOnly? Did you make the field a fillable field?
Paul
Views
Replies
Total Likes
Hi Paul,
Thanks for responding.
Field: Text Field
Value: User Entered - Optional
Could you please take a look at the attached example?
Views
Replies
Total Likes
There was a readOnly access on the subform that holds the TextField.
I remember there being an issue over a year ago where under a specific set of circumstances that could happen to you. Note that there is no UI in designer to remove that so I had to do it in the XML source. Here is the updated sample.
Paul
Views
Replies
Total Likes
Fantastic! It works.
I compared the XML source and so your deletion.
Thank you very much.
Yaniv
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies