Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe form doubts

Former Member
0 Kudos

Hi All,

    I have few doubts in Adobe form development.

1. Hiding a field when it isnull or initial.

   Ihav tried using the java scroipt code given in discussion forums as below but it is not working .

if(this.rawValue == null)

{

  this.presence = "hidden";


would please help me how to go about this?



2. I want to wrap a table in subform so that I can draw an under line at the end of the table.  or I have a requirement to draw a border line at the end of the table  . how do I do that?


Murali

2 REPLIES 2

Former Member
0 Kudos

For 1.:

Have you tried to use the direkt way to hide the element? Example:

data.Page2.grp2.func.rb.ifyes.presence  = "hidden"

Another mistake could be the place you wrote your code. Which function did you use?

Regards

Marcel

0 Kudos

Hi Marcel,

Thanks for your reply and I could able to solve it by using '0.00' instead of NULL. and it is working now.

Murali