BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
function actionBegin(args) {
if(args.requestType == "beforeOpenAddDialog"){
var dialogObj = $(args.element).ejDialog("instance"),
model = dialogObj.model;
model.position.X = 300;
model.position.Y = 30;
}
else if(args.requestType == "beforeOpenEditDialog"){
var dialogObj = $(args.element).ejDialog("instance"),
model = dialogObj.model;
model.position.X = 300;
model.position.Y = 30; }
} |
Thanks,
I'm glad for this solution.
Now I know how to change the position of popup.
Best regards.