Class KanbanColumn
Inherited Members
Namespace: Syncfusion.JavaScript.Models
Assembly: Syncfusion.EJ.dll
Syntax
public class KanbanColumn : EJTagHelper
Constructors
KanbanColumn()
Declaration
public KanbanColumn()
Properties
AllowDrag
Gets or sets an object that indicates can able to drag a card in specified columns or not.
Declaration
[JsonProperty("allowDrag")]
public bool AllowDrag { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
AllowDrop
Gets or sets an object that indicates can able to drop a card in specified columns or not.
Declaration
[JsonProperty("allowDrop")]
public bool AllowDrop { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Constraints
To customize the column constraints with validation of minimum or maximum number of cards.
Declaration
[JsonProperty("constraints")]
public ColumnConstraints Constraints { get; set; }
Property Value
Type | Description |
---|---|
ColumnConstraints | It accepts object of constraints |
HeaderTemplate
Gets or sets a value that indicates to add the template within the header element.
Declaration
[JsonProperty("headerTemplate")]
public string HeaderTemplate { get; set; }
Property Value
Type | Description |
---|---|
System.String | It accepts template id as string |
HeaderText
Gets or sets an object that indicates to render the Kanban with specified columns header text.
Declaration
[JsonProperty("headerText")]
public string HeaderText { get; set; }
Property Value
Type | Description |
---|---|
System.String | It accepts title for column |
IsCollapsed
Gets or sets an object that indicates to render the Kanban with specified columns iscollapsed.
Declaration
[JsonProperty("isCollapsed")]
public bool IsCollapsed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Key
Gets or sets an object that indicates to render the Kanban with specified columns key.
Declaration
[JsonProperty("key")]
public List<string> Key { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | It accepts key for column |
ShowAddButton
Gets or sets an object that indicates to render the Kanban with specified columns to show the add button.
Declaration
[JsonProperty("showAddButton")]
public bool ShowAddButton { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
TotalCount
To customize the column total count text.
Declaration
[JsonProperty("totalCount")]
public TotalCount TotalCount { get; set; }
Property Value
Type | Description |
---|---|
TotalCount | It accepts object of total count |
Visible
Gets or sets an object that indicates to render the Kanban with specified columns visible.
Declaration
[JsonProperty("visible")]
public bool Visible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Width
Gets or sets an object that indicates to render the Kanban with specified columns width.
Declaration
[JsonProperty("width")]
public object Width { get; set; }
Property Value
Type | Description |
---|---|
System.Object | It accepts width for column |