Posts

Showing posts with the label javascript

Show Modal Dialog

//******** Basic Dialog Starts Here ***********/ function openBasicDialog(tUrl, tTitle) {     alert(tUrl);     var options = {         url: tUrl,         title: tTitle     };     SP.SOD.execute('sp.ui.dialog.js', 'SP.UI.ModalDialog.showModalDialog', options);     } //******** Basic Dialog Ends Here ***********/