Hi,Let's say you have XML data file like this:
0 John
854931 0
Paul 855198
1 Alex
855744 1
Agarkova Natalya 854983
1 Den
854683 You can take data by
fg_code with this scripts:var userCode=
Ref(xfa.resolveNodes(concat("$record.empls.empl.[fg_code==""",fgCode,"""].empl_code")))var
userName=
Ref(xfa.resolveNodes(concat("$record.empls.empl.[fg_code==""",fgCode,"""].empl_name")))after
that you will have two lists with names and codes.Next you have to fill
you drop down list with data, you c...