or
EditMode
="EditForms" is working but I have 100 of pages are using EditMode="PopUp".
var reModuleDivs = document.getElementsByClassName("reModule");
var reModuleDiv = reModuleDivs[0];
var notesEditorUpdatePanel = document.getElementById("<%= notesEditorUpdatePanel.ClientID %>");
reModuleDiv.appendChild(notesEditorUpdatePanel);
this
.checkFileExtension =
function
(radUpload, args) {
if
(!radUpload.isExtensionValid(args.get_fileName())) {
alert(
'Please upload images with .jpg, .gif, .png, .bmp, or .tif extensions.'
);
radUpload.remove_fileSelected();
}
}