Application Development and Automation 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: 
Read only

Adobe form doubts

Former Member
0 Likes
626

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

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
Read only

Former Member
0 Likes
592

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

Read only

0 Likes
592

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