cancel
Showing results for 
Search instead for 
Did you mean: 

Adobeform + Javascript : Changing the value of a table field at run time based on some conditions

Former Member
0 Kudos

Hello,

I want to dynamically change the value of a field at run time.

Lets say I have 5 columns in my table and when reaching the last page in adobeform, I want to change the value of my 1st column using JavaScript.

Can you please suggest some possible solutions?

Thanking you in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

kishi1235
Explorer
0 Kudos

You can do this by using javascript logic.

sample logic :

var curpage  = $layout.page ( ref ( $ ) )

     var totpages = $layout.pageCount()

     if ( curpage = totpages ) then

         $.col.rawValue = "ABC"         // New Value

     endif