Hi, i am working on mvc3 project,in which i using schedular month to show charts in it.But i am
not able to show charts in schedular cell for each month,because charts image generated in run time by this <img src="@Url.Action(“CallReceiveDate”, “Calendar”, new { id = @id})" alt=“SimpleChart” /> code, where CallReceiveDate is method of type Fileresult and Calendar is the controller and id is selected from dopdownlist,According to which charts is showing in schedular month
i am using this code
scheduler.config.xml_date = "%m/%d/%Y %H:%i";
scheduler.init("scheduler_here", new Date(2010, 6, 1), "month");
scheduler.load("/Calendar/CallReceiveDate");
questions
1.how pass id to CallReceiveDate method.
2.how show charts image in each cells of schedular month by call this <img src="@Url.Action(“CallReceiveDate”, “Calendar”, new { id = @id})" alt=“SimpleChart” />