Hi.
I have made my own Edit appointment form, and want to make a dropdownlist, just as the 'Background' selector.
I simply can't figure out, how load the background colors in the scheduler into the dropdown.
My code look like this:
Dim a As Int16
Dim list(Me.uiRadSchedulerMain.Backgrounds.Count - 1) As String
For a = 0 To Me.uiRadSchedulerMain.Backgrounds.Count - 1
Dim dataItem As New RadListDataItem()
dataItem.Text = Me.uiRadSchedulerMain.Backgrounds.Item(a).DisplayName.ToString
dataItem.Image = ??? (background of backgrounds.item(a).[Image])
dataItem.Value = Me.uiRadSchedulerMain.Backgrounds.Item(a).Id
Me.comboBackground.Items.Add(dataItem)
Next
Kindly Peter