problem with repeating table

S

sodino

Sorry for english

I have problem with repeating table with show populating data from secendary
data source (sql).
Secendary data source are two tables from sql server.
And now my problem.
When user select for example firm from drop menu the other two fields must
autmatically be set. This work fine, but when user click ctr+enter to show
next row, populate not working.
There are two formula field and drop-down menu in this table.


Thanks in advance
 
B

Bojana Marjanovic [MSFT]

I think I understand the problem. I'm assuming that you're trying to copy
the records over from the secondary data source into the main data source.
When you are doing this, what's happening is that you are only copying the
first record to your repeating table and not all the records.
I'm afraid there's no way to do this without writing some code. You will
need to write code that will cycle through each of the records and copy them
over to the main data source so that they will show up in your repeating
table.
-Bojana
 
Top