Hey there, im using a Loop where i would like to add Resources afterwards of dp.init. Ist there a way like dp.addResources (example) or something to acomplish this?
To add resources you need to modify the resources[] array and call update():
dp.resources.push({name: "New resource 1", id: "NR1"}); dp.resources.push({name: "New resource 2", id: "NR2"}); dp.update();