Opened 13 years ago

Closed 13 years ago

#869 closed defect (fixed)

printPDF: Problem in IE 8 if module is included as a button

Reported by: verenadiewald Owned by: verenadiewald
Priority: major Milestone: 2.7.3 release
Component: print Version: 2.7
Keywords: Cc:

Description

Internet Explorer 8: If printPDF is included as a button in Mapbender, there is no reaction in the print popup using the different select options or starting the print action

Change History (3)

comment:1 by verenadiewald, 13 years ago

The Problem is: Using new pt.Mapbender.Extent in popup

pt.mb_mapObj[ind].extent = new pt.Mapbender.Extent(
				coord[0],
				pos[1],
				pos[0],
				coord[3]
			);

comment:2 by verenadiewald, 13 years ago

solution: define a makeExtent function in lib/extent.js which returns the extent object and use this makeExtent function in printPDF.php

pt.mb_mapObj[ind].extent = pt.Mapbender.makeExtent(
				parseFloat(coord[0]),
				pos[1],
				pos[0],
				parseFloat(coord[3])
			);

comment:3 by verenadiewald, 13 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.