Hi,
I am working in adobe livecycle designer. Have problem in assigning value to the textfield.
My script is like:
if(abc.length>25){x.rawValue="Length exceeds the limit");}
Everything goes fine but the value of textfield is not printing. So I tested by adding alert inside if condition. Like below:
if(abc.length>25){app.alert(x.rawValue); x.rawValue="Length exceeds the limit"); app.alert(x.rawValue);}
So what happening is, first alert is coming as 'null' and the second alert coming with the value "Length exceeds the limit". But the text field is not showing any value, it is still blank.
I made the field presence is visible as well.
Its little urgent. Any help is appreciate!
Thanks!