Hello,
I am trying to follow along with webinars to learn the RadScheduler. I successfully was able to create an application that had no resources, create schedules etc...I can save appointments and the Appointments table in the Telerik provided example database populates fine and all..when I have one resource only.
The problem comes when I try to save to a RadScheduler with more than 1 resource.
AppointmentsResources table in database does not seem to populate. Also, newly created schedule item you just tried to save disappears. No appointments load up on initial load either.
I tried to emulate it working by creating a manual entry in AppointmentsResources table, to no avail, so I deleted entry.
However, Appointments table still populates correctly.
Code is simple
Using Telerik provided database. Thank you very much!
                                I am trying to follow along with webinars to learn the RadScheduler. I successfully was able to create an application that had no resources, create schedules etc...I can save appointments and the Appointments table in the Telerik provided example database populates fine and all..when I have one resource only.
The problem comes when I try to save to a RadScheduler with more than 1 resource.
AppointmentsResources table in database does not seem to populate. Also, newly created schedule item you just tried to save disappears. No appointments load up on initial load either.
I tried to emulate it working by creating a manual entry in AppointmentsResources table, to no avail, so I deleted entry.
However, Appointments table still populates correctly.
Code is simple
Using Telerik provided database. Thank you very much!
Imports Telerik.WinControls.UI   Public Class Form1       Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         'TODO: This line of code loads data into the 'SchedulerDataDataSet.Resources' table. You can move, or remove it, as needed.         Me.ResourcesTableAdapter.Fill(Me.SchedulerDataDataSet.Resources)         'TODO: This line of code loads data into the 'SchedulerDataDataSet.Appointments' table. You can move, or remove it, as needed.         Me.AppointmentsTableAdapter.Fill(Me.SchedulerDataDataSet.Appointments)               RadScheduler1.ActiveView.ResourcesPerView = 5         RadScheduler1.GroupType = GroupType.Resource             End Sub      Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click           Dim appointmenttableadapter As New SchedulerDataDataSetTableAdapters.AppointmentsTableAdapter()         Dim resourcetableadapter As New SchedulerDataDataSetTableAdapters.AppointmentsResourcesTableAdapter()             Try              appointmenttableadapter.Update(SchedulerDataDataSet.Appointments)             resourcetableadapter.Update(SchedulerDataDataSet.AppointmentsResources)               SchedulerDataDataSet.AcceptChanges()             Catch ex As Exception             Throw ex         Finally          End Try        End SubEnd Class