duplicate table row along fields with rules

H

hippopod

I'm a newbie to InfoPath, I created a field with rules in a table row.
Now I need to duplicate this row 100 times. These 100 of them have the
same field name.
I want them to have different fieldnames so that if user changes one,
it won't change 100 of them at the same time.
It seems now I have to manually create 100 fields with different names.
Is there an easier way of doing this duplicate?
 
V

Vikas Verma

if you place the control in a repeating table, the control gets created
multiple times with the same id/name. In infopath you should always
think of controls as nodes in xml.

So, when controls are placed in repeating table, each control is
analogous to nodelist in the underneath xml.

each control acts as a different control and all the rules on the on
each controls are applied to the control itself and not to other
controls.

Now if you want to know what control was changed, you can use VSTO to
write simple code to check the changed node in the nodelist.
 
Top