Guest User

Untitled

a guest
Jan 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. function openDialog(listId) {
  2. SP.SOD.executeOrDelayUntilScriptLoaded(function () {
  3. SP.UI.ModalDialog.showModalDialog({
  4. url: 'http://yoursite/yourweb/_layouts/15/listform.aspx?PageType=8&ListID={' + listId + '}&IsDlg=1',
  5. title: 'New Item',
  6. allowMaximize: false,
  7. showClose: true,
  8. width: 500,
  9. height: 300,
  10. dialogReturnValueCallback: function(dialogResult, returnValue) {
  11. SP.UI.ModalDialog.RefreshPage(SP.UI.DialogResult.OK);
  12. }
  13. });
  14. }, 'sp.ui.dialog.js');
  15. }
  16.  
  17. <a href="javascript:..."></a>
Add Comment
Please, Sign In to add comment