Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
How To: WebSchedule
posted

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.

Cheers
Marc

  • 1010
    posted

    here is a minimal example

    in the .aspx file:

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    <igsch:WebWeekView ID="WebWeekView1" runat='server'></igsch:WebWeekView>

     

     

    <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"

     

    />

    code-behind (page_init)

    WebScheduleSqlClientProvider1.Connect(

    ConfigurationManager.AppSettings["MyConnectionString"]);

    WebScheduleSqlClientProvider1.WebScheduleInfo = WebScheduleInfo1;

    WebWeekView1.WebScheduleInfo = WebScheduleInfo1;

    WebScheduleInfo1.ActiveResourceName = CurrentUser.ResourceName;

    Good Luck!

  • 75
    Suggested Answer
    posted

    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