<kendo:taskBoard-resource>
The configuration of the TaskBoard resource(s). A TaskBoard resource is optional metadata that can be associated with a TaskBoard event.
Example
<kendo:taskBoard-resources>
<kendo:taskBoard-resource></kendo:taskBoard-resource>
</kendo:taskBoard-resources>
Configuration Attributes
dataColorField java.lang.String
The field of the resource data item which contains the resource color.
Example
<kendo:taskBoard-resource dataColorField="dataColorField">
</kendo:taskBoard-resource>
dataTextField java.lang.String
The field of the resource data item which represents the resource text.
Example
<kendo:taskBoard-resource dataTextField="dataTextField">
</kendo:taskBoard-resource>
dataValueField java.lang.String
The field of the resource data item which represents the resource value. The resource value is used to link a TaskBoard event with a resource.
Example
<kendo:taskBoard-resource dataValueField="dataValueField">
</kendo:taskBoard-resource>
field java.lang.String
The field of the TaskBoard event which contains the resource id.
Example
<kendo:taskBoard-resource field="field">
</kendo:taskBoard-resource>
multiple boolean
If set to true the TaskBoard event can be assigned multiple instances of the resource. The TaskBoard event field specified via the field option will contain an array of resources. By default only one resource instance can be assigned to an event.
Example
<kendo:taskBoard-resource multiple="multiple">
</kendo:taskBoard-resource>
name java.lang.String
The name of the resource used to distinguish resource. If not set the value of the field option is used.
Example
<kendo:taskBoard-resource name="name">
</kendo:taskBoard-resource>
title java.lang.String
The user friendly title of the resource displayed in the TaskBoard edit form. If not set the value of the field option is used.
Example
<kendo:taskBoard-resource title="title">
</kendo:taskBoard-resource>
valuePrimitive boolean
Set to false if the TaskBoard event field specified via the field option contains a resource data item. By default the TaskBoard expects that field to contain a primitive value (string, number) which corresponds to the "value" of the resource (specified via dataValueField).
Example
<kendo:taskBoard-resource valuePrimitive="valuePrimitive">
</kendo:taskBoard-resource>