Hai,
There is a form on D365 DocumentUpload which is used to upload files from dives. That dialog form is closing once the upload is completed. Is there any way to stop that behavior . Because i need to add one OK button and on click of that button i need to do some other operation. But currently its closing once the upload is done. The below piece of code is the reason for the closing the form
[FormCommandAttribute("CloseDialog")]
public void CloseDialog()
{
currentForm.close();
this.notifyUploadCompleted();
uploadFailed = false;
}
Any way to achieve.. looking forward to see the reply..
Thanks in advance.