Hi,
I created modalDialogPopup confirmation box with sharpoint object model. I want to display list item name instead of please confirm(title). See following code:
var options = { html: cloneModalContent, // ID of the HTML tag or HTML content to be displayed in modal dialog width: 375, height: 150, title: "Please Confirm", dialogReturnValueCallback: CloseDialog, // custom callback function allowMaximize: false, showClose: true };
SP.UI.ModalDialog.showModalDialog(options);
Thank you.