The native behaviour of FCK editor when you press the print button is to print only the text in edit.
I build an asp application which uses FCK Editor.
The editor is used in a page with other contents.
When i press the print button I need that all the page is printed, non only the edited text.
For the usage of FCK Editor with Firefox, I changed the command in file fckeditorcode_gecko.js from
....case 'Print':FCK.EditorWindow.print();break....
to
...case 'Print':FCK.EditorWindow.parent.parent.print();break...
and it works.
What have I to change for FCK Editor user with Internet Explorer to obtain the same result?
Thanks
I build an asp application which uses FCK Editor.
The editor is used in a page with other contents.
When i press the print button I need that all the page is printed, non only the edited text.
For the usage of FCK Editor with Firefox, I changed the command in file fckeditorcode_gecko.js from
....case 'Print':FCK.EditorWindow.print();break....
to
...case 'Print':FCK.EditorWindow.parent.parent.print();break...
and it works.
What have I to change for FCK Editor user with Internet Explorer to obtain the same result?
Thanks