search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

daypilot schedular printing issue

Asked by mike
13 years ago.

hi,

when iam trying to print live schedular its is printing good. but in the header is showing me like <div><a href:="javascript dpsd:command back etc iwand to show the date time plz help me

Answer posted by Allen
13 years ago.

If the scheduler works the same as the Month control, n the relevant Before_Render event, check Control.IsExport before writing your HTML (you can export with plain text instead)

Comment posted by Anonymous
12 years ago.

hi i am getting same problem how i can resolve this . my code is

Response.Clear();
Response.ContentType = "image/png";
Response.AddHeader("content-disposition", "attachment;filename=print.png");
DayPilotScheduler1.DataBind();
MemoryStream img = DayPilotScheduler1.Export(ImageFormat.Png);
img.WriteTo(Response.OutputStream);
Response.End();

please help me ASAP.

Comment posted by Anonymous
12 years ago.

hi
i am using zooming also in this section

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.