Hi
How can I disable the pop-up window that appears when you print the pane? I have right and left pane and have "Print" link on left which prints the right pane content.
Since my page that contains splitter itself a popup, I do not want display another popup window when the user clicks "Print"
I use the below script from telerik for printing.
function PrintPane (paneID) {
var splitter = <%= RadSplitter2.ClientID%>;
var pane = splitter.GetPaneById(paneID);
if (!pane) return;
var cssFileAbsPath = '../BonusBuck/images/BonusBuck.css';
var arrExtStylsheetFiles = [cssFileAbsPath];
pane.Print(arrExtStylsheetFiles);
}