Class SchedulerMapping
Represents the simple binding between the property of an item from the data store and the property of an item from RadScheduler. The RadScheduler items are events, resources, etc.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.Scheduler.dll
Syntax
public class SchedulerMapping
Constructors
SchedulerMapping(String, String)
Initializes a new instance of the SchedulerMapping class that simple-binds the indicated property of an item from RadScheduler to the specified item from the data store.
Declaration
public SchedulerMapping(string schedulerProperty, string dataSourceProperty)
Parameters
System.String
schedulerProperty
Property name of an item in RadScheduler. |
System.String
dataSourceProperty
Property name of an item in the data store. |
Fields
ConvertToDataSource
The callback that converts the given value object from a RadScheduler item to the specified type of the data store corresponding item.
Declaration
public ConvertCallback ConvertToDataSource
Field Value
ConvertCallback
|
ConvertToScheduler
The callback that converts the given value object from the data store to the specified type of the RadScheduler corresponding item.
Declaration
public ConvertCallback ConvertToScheduler
Field Value
ConvertCallback
|
Properties
DataSourceItemProperty
Gets or sets the data store item property name that is mapped.
Declaration
public string DataSourceItemProperty { get; set; }
Property Value
System.String
|
SchedulerItemProperty
Gets or sets the RadScheduler item property name that is mapped.
Declaration
public string SchedulerItemProperty { get; set; }
Property Value
System.String
|
Events
ConvertValueToDataSource
Declaration
public event EventHandler<ConvertFromToSchedulerEventArgs> ConvertValueToDataSource
Event Type
System.EventHandler<ConvertFromToSchedulerEventArgs>
|
ConvertValueToScheduler
Declaration
public event EventHandler<ConvertFromToSchedulerEventArgs> ConvertValueToScheduler
Event Type
System.EventHandler<ConvertFromToSchedulerEventArgs>
|