|
8/10/2010 4:55:14 AM
|
topic:
assembly reference error in webcalendar control
from:
go Posts 1090
|
I have no meet with error like yours till now. It’s mean the .NET cannot find the Start property in the Appointment object, and I suppose there is problem with web application loading by IIS. Notice, the IIS can unload your application for some reasons, and later loads it again. Application pool causes that issue. Therefore, you should check your application settings in the IIS.
|
|
8/6/2010 9:06:26 PM
|
topic:
assembly reference error in webcalendar control
from:
rajesh_rite Posts 6
|
This below error coming some time in my application, I have single developer license, am only using this webcalendar control in my project. Please give me a suggestion, what i have to do for avoiding this error
Error 7 'Appointment' does not contain a definition for 'Start' and no extension method 'Start' accepting a first argument of type 'Appointment' could be found (are you missing a using directive or an assembly reference?) E:\Rajesh\Medical\MEDICAL_ERP_July16\WeeklyCalendar.aspx.cs 171 28 E:\...\MEDICAL_ERP_July16\
Advance thanks
B.Rajesh
|
|
8/5/2010 7:23:45 AM
|
topic:
Print Issue
from:
go Posts 1090
|
Is your resource list weighter that single page? It is the problem, because there is no way to split resource grid between pages.
|
|
8/5/2010 7:19:28 AM
|
topic:
DOCTYPE and empty Timeline
from:
go Posts 1090
|
Could you send me your test application for checking? It is difficult to say what is wrong, if I don't see the source code.
|
|
8/3/2010 2:26:52 AM
|
topic:
DOCTYPE and empty Timeline
from:
jspposte Posts 1
|
Hi, I'm evaluating the WebScheduler for my company, but there is a problem with my WebApp: in my MasterPage there isn't DOCTYPE statement (I removed this to use 100% height resizing of body) and the result is the TimeLine is empty, doesn't shows days and/or times.
Is there a solution for my problem?
Thank very much and excuse me for my bad english.
|
|
8/2/2010 5:48:14 AM
|
topic:
Print Issue
from:
zumwalt Posts 32
|
go wrote:
You have to set ResourceScheduler.LeftResourceWidth property to appropriate value, to make all columns visible, before you start printing.
Thats my point, my left resource can expand past a full 1024 screen width if I do that, I want the print to have an option to print full left resource view just like it can print full right view with the bars.
|
|
7/31/2010 9:25:56 AM
|
topic:
Print Issue
from:
go Posts 1090
|
You have to set ResourceScheduler.LeftResourceWidth property to appropriate value, to make all columns visible, before you start printing.
|
|
7/28/2010 7:11:16 AM
|
topic:
Print Issue
from:
zumwalt Posts 32
|
I have left columns that have a scroll bar at the bottom meaning that I have more columns than what is visible, but I want to print to include those hidden columns but it doesn't, It includes all the chart bars in the resource tasks but not all of the columns in the left list.
|
|
7/20/2010 1:39:09 PM
|
topic:
Loading Resources
from:
go Posts 1090
|
Like filling the Appointments collection for items loading, you have to fill Resources collection: Something like following:
foreach (AppsDataSet.ResourcesRow row in ds.Resources.Rows) calendar.Resources.Add(createFrom(row));
Resource createFrom(AppsDataSet.ResourcesRow row) { Resource r = new Resource(); // r.Text = row.Text; r.BackColor = Color.FromArgb(row.BackColor); r.Tag = r;
return r; }
|
|
7/20/2010 1:32:49 PM
|
topic:
how to change our own custom color for web dailycalendar
from:
go Posts 1090
|
It looks like you are using different library in your web project than project you have modified. Check references in web project, whether there is reference to the proper projects.
|