Interface IScheduleResources
An interface that represents the resource properties of a scheduler.
Namespace: Syncfusion.Blazor.Schedule
Assembly: Syncfusion.Blazor.dll
Syntax
public interface IScheduleResources
Properties
AllowMultiple
When set to true, allows multiple selection of resource names, thus creating multiple instances of same appointment for the selected resources.
Declaration
bool AllowMultiple { get; set; }
Property Value
Type |
---|
System.Boolean |
ColorField
It maps the Color
field from the dataSource, which is used to specify colors for the resources.
Declaration
string ColorField { get; set; }
Property Value
Type |
---|
System.String |
CssClassField
It maps the CssClass
field from the dataSource, which is used to specify different styles to each resource appointments.
Declaration
string CssClassField { get; set; }
Property Value
Type |
---|
System.String |
EndHourField
It maps the EndHour
field from the dataSource, which is used to specify different work end hour for each resources.
Declaration
string EndHourField { get; set; }
Property Value
Type |
---|
System.String |
ExpandedField
It maps the Expanded
field from the dataSource, which is used to specify whether each resource levels
in timeline view needs to be maintained in an expanded or collapsed state by default.
Declaration
string ExpandedField { get; set; }
Property Value
Type |
---|
System.String |
Field
A value that binds to the resource field of event object.
Declaration
string Field { get; set; }
Property Value
Type |
---|
System.String |
GroupIDField
It maps the GroupID
field from the dataSource, which is used to specify under which parent resource,
the child should be grouped.
Declaration
string GroupIDField { get; set; }
Property Value
Type |
---|
System.String |
IdField
It maps the Id
field from the dataSource and is used to uniquely identify the resources.
Declaration
string IdField { get; set; }
Property Value
Type |
---|
System.String |
Name
It represents a unique resource name for differentiating various resource objects while grouping.
Declaration
string Name { get; set; }
Property Value
Type |
---|
System.String |
Query
Defines the external Query
that will be executed along with the data processing.
Declaration
Query Query { get; set; }
Property Value
Type |
---|
Query |
StartHourField
It maps the StartHour
field from the dataSource, which is used to specify different work start hour for each resources.
Declaration
string StartHourField { get; set; }
Property Value
Type |
---|
System.String |
TextField
It maps the Text
field from the dataSource, which is used to specify the resource names.
Declaration
string TextField { get; set; }
Property Value
Type |
---|
System.String |
Title
It holds the Title of the resource field to be displayed on the schedule event editor window.
Declaration
string Title { get; set; }
Property Value
Type |
---|
System.String |
WorkDaysField
It maps the working days field from the dataSource, which is used to specify different working days for each resources.
Declaration
string WorkDaysField { get; set; }
Property Value
Type |
---|
System.String |