I need some files to export in pdf

Hi!

Congrats for this new version.
I am trying pdf export but I am not able to do it.

Readme says I need to download files from here: dhtmlx.com/fixme.zip but this file doens’t exist. Are any other way to download it?

Correct link is
dhtmlx.com/docs/download/dht … to-pdf.zip

Thank you a lot. It works now

Look, this is my init function:

[code]function init() {
scheduler.xy.margin_top=30;

	scheduler.config.multi_day = true;
scheduler.config.xml_date="%Y-%m-%d %H:%i";
	/*scheduler.config.limit_start = new Date(2009,5,15);*/
	/*scheduler.config.limit_end = new Date (2009,6,15);*/
	scheduler.config.first_hour = 8;
	scheduler.config.last_hour = 23;
	scheduler.init('scheduler_here',new Date(2009,5,1),"month");
		scheduler.data_attributes = function(){
		var empty = function(a){ return a||""; }
		return [["id"],
				["text"],
				["start_date",scheduler.templates.xml_format],
				["end_date",scheduler.templates.xml_format],
				["rec_type",empty],
				["event_length",empty],
				["event_pid",empty]];
	} 



	
	scheduler.config.details_on_create=true;
	scheduler.config.details_on_dblclick=true;
	scheduler.load("events.php?uid="+scheduler.uid());
	
	var dp = new dataProcessor("events.php");
	dp.init(scheduler);
}[/code]

I can’t print week or day with this example. It breaks. If I change my init and I put basic, it works