jquery.PrintArea.js
5.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
(function ($) {
var counter = 0;
var modes = { iframe: "iframe", popup: "popup" };
var defaults = { mode: modes.iframe,
popHt: 500,
popWd: 400,
popX: 200,
popY: 200,
popTitle: '',
popClose: false
};
var settings = {}; //global settings
$.fn.printArea = function (options) {
$.extend(settings, defaults, options);
counter++;
var idPrefix = "printArea_";
$("[id^=" + idPrefix + "]").remove();
var ele = getFormData($(this));
settings.id = idPrefix + counter;
var writeDoc;
var printWindow;
switch (settings.mode) {
case modes.iframe:
var f = new Iframe();
writeDoc = f.doc;
printWindow = f.contentWindow || f;
break;
case modes.popup:
printWindow = new Popup();
writeDoc = printWindow.doc;
}
writeDoc.open();
writeDoc.write(docType() + "<html>" + getHead() + getBody(ele) + "</html>");
writeDoc.close();
printWindow.focus();
printWindow.print();
if (settings.mode == modes.popup && settings.popClose)
printWindow.close();
}
function docType() {
if (settings.mode == modes.iframe || !settings.strict) return "";
var standard = settings.strict == false ? " Trasitional" : "";
var dtd = settings.strict == false ? "loose" : "strict";
return '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01' + standard + '//EN" "http://www.w3.org/TR/html4/' + dtd + '.dtd">';
}
function getHead() {
var head = "<head><title>" + settings.popTitle + "</title>";
$(document).find("link")
.filter(function () {
return $(this).attr("rel").toLowerCase() == "stylesheet";
})
.filter(function () { // this filter contributed by "mindinquiring"
var media = $(this).attr("media");
if (media == undefined) {
return false;
}
else {
return (media.toLowerCase() == "" || media.toLowerCase() == "print");
}
})
.each(function () {
head += '<link type="text/css" rel="stylesheet" href="' + $(this).attr("href") + '" >';
});
head += "</head>";
return head;
}
function getBody(printElement) {
return '<body><div class="' + $(printElement).attr("class") + '">' + $(printElement).html() + '</div></body>';
}
function getFormData(ele) {
$("input,select,textarea", ele).each(function () {
// In cases where radio, checkboxes and select elements are selected and deselected, and the print
// button is pressed between select/deselect, the print screen shows incorrectly selected elements.
// To ensure that the correct inputs are selected, when eventually printed, we must inspect each dom element
var type = $(this).attr("type");
if (type == "radio" || type == "checkbox") {
if ($(this).is(":not(:checked)")) this.removeAttribute("checked");
else this.setAttribute("checked", true);
}
else if (type == "text")
this.setAttribute("value", $(this).val());
else if (type == "select-multiple" || type == "select-one")
$(this).find("option").each(function () {
if ($(this).is(":not(:selected)")) this.removeAttribute("selected");
else this.setAttribute("selected", true);
});
else if (type == "textarea") {
var v = $(this).attr("value");
if ($.browser.mozilla) {
if (this.firstChild) this.firstChild.textContent = v;
else this.textContent = v;
}
else this.innerHTML = v;
}
});
return ele;
}
function Iframe() {
var frameId = settings.id;
var iframeStyle = 'border:0;position:absolute;width:0px;height:0px;left:0px;top:0px;';
var iframe;
try {
iframe = document.createElement('iframe');
document.body.appendChild(iframe);
$(iframe).attr({ style: iframeStyle, id: frameId, src: "" });
iframe.doc = null;
iframe.doc = iframe.contentDocument ? iframe.contentDocument : (iframe.contentWindow ? iframe.contentWindow.document : iframe.document);
}
catch (e) { throw e + ". iframes may not be supported in this browser."; }
if (iframe.doc == null) throw "Cannot find document.";
return iframe;
}
function Popup() {
var windowAttr = "location=no,statusbar=no,directories=no,menubar=no,titlebar=no,toolbar=no,dependent=no";
windowAttr += ",width=595px,height=842px,top=0,left=0,toolbar=no,scrollbars=no,personalbar=no";
windowAttr += ",resizable=yes,screenX=" + settings.popX + ",screenY=" + settings.popY + "";
var newWin = window.open("", "_blank", windowAttr);
newWin.doc = newWin.document;
return newWin;
}
})(jQuery);