var fetchForm = this.getInnovator().newItem("Form","get");
fetchForm.setProperty("name","myForm");
var formId = fetchForm.apply("get").getID();
// set form params
var param = {
title : "MyCustomForm",
formId : formId,
aras : top.aras,
partId : this.getID()
};
top.aras.modalDialogHelper.show("DefaultModal", window, param, options, "ShowFormAsADialog.html");
This works well, but I'd like the window not to be modal.
How does one open a non-modal dialog with Aras?
(I haven't found any documentation for this part of the Aras Javascript API)
We're using 11.0 SP3 at the moment.
Cheers,
/Marcus