Does anybody know if it's possible to modify the InitialChildData collection of a ReplicatorActivity within SharePoint Workflow such that new instances of the activity to be replicated are spawned?
|
1
|
If you implement your own public IList replicatorActivity1_InitialChildData1 getter (which you bind to your ReplicatorActivity.InitialChildData), you can dynamically populate your collection right inside this property implementation. The child activity for your ReplicatorActivity will be replicated for each item in the IList returned by your getter. Is this what you were looking for? |
||||||
|