Hi Guys,
I'm trying to configure a WebSchedule MonthView with SQL, I've hunted high and low on this site. Can anybody point me to a tutorial and/or instructions on how to do this.CheersMarc
here is a minimal example
in the .aspx file:
<igsch:WebScheduleInfo ID="WebScheduleInfo1" runat="server"
EnableSmartCallbacks="True" EnableUnassignedResource="True" EnableRecurringActivities="true"
AppointmentFormPath="~/WebSchedule/AppointmentAdd.aspx"
ReminderFormPath="~/WebSchedule/Reminder.aspx" />
<ig_scheduledata:WebScheduleSqlClientProvider ID="WebScheduleSqlClientProvider1" runat="server"
/>
WebScheduleSqlClientProvider1.Connect(
ConfigurationManager.AppSettings["MyConnectionString"]);
WebScheduleSqlClientProvider1.WebScheduleInfo = WebScheduleInfo1;
WebWeekView1.WebScheduleInfo = WebScheduleInfo1;
WebScheduleInfo1.ActiveResourceName = CurrentUser.ResourceName;
Good Luck!
Hi Marc,
You can get the instructions from the latest NetAdvantage ASP.NET Online Help Documentation at http://ko.infragistics.com/support/documentation.aspx#OnlineDocumentation under Developer's Guide\Controls\ASP.NET Controls\WebSchedule\Deploying WebSchedule Controls and Components\Deploying to Microsoft SQL Server
Regards,
Riana
Infragistics ASP.NET team