or
function ZoomImage(sender, args) {
sender.zoomBestFit();
}
Facing issue when trying to close the radwindow and reload of the parent page.
Below mentioned is the java function used to reload the parent page. Its is giving the warning[Please find the attachment]
function CloseAndRebind(args) {
//GetRadWindow().BrowserWindow.location.reload();
var oWind = GetRadWindow();
oWind.close();
GetRadWindow().BrowserWindow.location.reload();
//top.location.href = top.location.href;
}
private void findAndExpand(RadTreeNode selectedNode)
{
RadTreeNode parentNode = selectedNode.ParentNode;
while (parentNode != null)
{
parentNode.Expanded = true;
parentNode = parentNode.ParentNode;
}
}
function ShowPDFDocument(title, url) {
var oWnd = $find("<%= PDFDocument.ClientID %>");
oWnd.set_title(title);
oWnd.setUrl(url);
oWnd.SetOffsetElementId('divDisplayPDFDocument');
oWnd.show();
}