cancel
Showing results for 
Search instead for 
Did you mean: 

run check on individual record in table

Former Member
0 Kudos

Hi,

I have got an adobe form - Data is dynamically populated in adobe form TABLE from database.

I am using FORMCALC for validations.

I want to run this check on each row of the table:

if ( $record.SOD_SHEET.S_HEADER.T_LINES_STRING.DATA.LINE_DESC eq "N" )

// show data in one column of this table as bold

Page2_Line.S_Lines.Table2.Row1[*].LINE_DESC.font.weight = "bold"

endif

-


this check is not running on any record. Looks i need to run some loop thru table.

Can someone help me in finding the solution to this problem.

Please let me know, if my question is unclear

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

this check runs before populating table with data.

Former Member
0 Kudos

i found a solution to this problem,

i run a loop

foreach i=0 to tablename.rowname.instancemanager.count - 1 do

//property statements

endfor

-


tablename.rowname.instancemanager.count - it returns total number of rows

Answers (0)