Hy guys,I was curios about the Printing support in v7.0 but I didn't find anything in the docs.
However I've found the example in the FeatureExplorer - and that's what intrigued me more :))
I've tried this in my code:
I click on Print preview but nothing happens.( I mean nothing. No error, no warn, no nothing neither in DevConsole or in Firebug)
Where do I go wrong?
Thanks in advance,
John
However I've found the example in the FeatureExplorer - and that's what intrigued me more :))
I've tried this in my code:
Code:
isc.IButton.create({
autoDraw: false,
ID:"printButton",
title: "Print Preview",
click: "isc.Canvas.showPrintPreview(EditPageID)"
})
Window.create({
ID:"EditPageID",
title:"Edit page",
showShadow:false,
autoDraw:false,
canDragReposition:false,
showMaximizeButton:false,
showMinimizeButton:false,
showCloseButton:true,
headerControls : ["headerIcon","headerLabel",printButton,helperButton,"closeButton"],
left:0, top:0,
width:"100%", height:"100%",
items:[
editForm_1,
editForm_2
]
});
I click on Print preview but nothing happens.( I mean nothing. No error, no warn, no nothing neither in DevConsole or in Firebug)
Where do I go wrong?
Thanks in advance,
John
Comment