If you like the popup SharePoint Uses and wants to implement such in your code here is the code sample that can meet your requirements.
function OpenDocsDialog(url1) {
var options = {
url: url1,
dialogReturnValueCallback: myDialogCallback
};
SP.UI.ModalDialog.showModalDialog(options);
}
function myDialogCallback(dialogResult, data) {
SP.UI.ModalDialog.RefreshPage(dialogResult)
}
Here is how you can call the function :
function OpenPopup1() {
OpenDocsDialog("URL");
return false;
}
If you want to implement it directly here is the sample code:
SP.UI.ModalDialog.showModalDialog({
url: dialogUrl,
allowMaximize: true,
showClose: true,
width: 400,
height: 200,
title: "Pop Up",
dialogReturnValueCallback: RefreshOnDialogClose
});
Subscribe to:
Post Comments (Atom)
The "Mark as Decorative" Feature in SharePoint: A Small Toggle With a Big Accessibility Impact
If you've spent any time building pages in SharePoint Online, you've probably noticed a new checkbox tucked inside the Accessibility...
-
In last blog we learn how can we enable footer on SharePoint Online Modern Communication site. If you have not gone through that you can use...
-
Code Review :- General 1. Remove the commented code 2. Variable name should not be contain "_". 3. Query should be in separat...
-
In previous blog we have go through the csv creation part. You can find it on below link: File Server Migration To SharePoint Online using S...
No comments:
Post a Comment