Hi Stephen,
If you are using a custom controller, you can use the functions dialogInitialized and dialogOpened to get the parent datasource, which will be your data list datasource. Otherwise, if you are using the AppCustomization file, you can still use both functions but you will need to filter by your dialog name.
For AppCustomization.js you can use as bellow:
dialogInitialized(dialog){
if (dialog.name == "MyDialog") { ... }
}
dialogOpened(obj){
if (obj.dialog.name == "MyDialog"){ ... }
}
------------------------------
Maycon Belfort
Consultant
Maxinst Consultoria e Tecnologia LTDA
Belo Horizonte
Brazil
------------------------------