75 | Print.prototype.print = function () {
76 | this.renderPrintGrid();
77 | this.printWind = window.open('', 'print', 'height=' + window.outerHeight + ',width=' + window.outerWidth + ',tabbar=no');
> 78 | this.printWind.moveTo(0, 0);
| ^ 79 | this.printWind.resizeTo(screen.availWidth, screen.availHeight);
80 | };
81 |
2598 |
2599 | Grid.prototype.print = function () {
2600 | if (this.printModule) {
> 2601 | this.printModule.print();
| ^ 2602 | }
2603 | };
2604 | /**
50 | this.grid.csvExport();
51 | break;
52 | case 'Print':
> 53 | this.grid.print();
| ^ 54 | break;
55 | }
56 | }