Syncfusion javascript kanban
Skill syncfusion/javascript-ui-controls-skills/skills/syncfusion-javascript-kanban
Implement Syncfusion TypeScript Kanban board for visual task management and workflow tracking. Use this when working with task boards, workflow visualization, or agile project management. This skill covers Kanban board setup, column configuration, card management, swimlanes, drag-and-drop interactions, and WIP limits for TypeScript applications.From its SKILL.md
npx -y skills add syncfusion/javascript-ui-controls-skills --skill syncfusion-javascript-kanbanAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
14.0 KB, ~3.2k tokens by cl100k_base, as published. Nobody here has run it
Implementing Kanban Board
Guide for implementing and customizing the Syncfusion TypeScript Kanban board - a visual task management control that displays work at various stages using columns, cards, and swimlanes.
When to Use This Skill
Use this skill when you need to:
- Implement a Kanban board for task or workflow management
- Create visual workflows with drag-and-drop card interactions
- Build agile project boards with columns representing workflow stages
- Group tasks by categories using swimlanes (e.g., by assignee, priority, team)
- Manage work-in-progress limits with card validation per column
- Enable card editing with dialogs for add/edit/delete operations
- Bind data from local arrays, remote APIs, or OData services
- Customize card layouts with templates for specific business requirements
- Track project status with visual representation across multiple stages
Control Overview
The Kanban board is a powerful visual management tool that helps teams:
- Visualize work stages with customizable columns
- Move cards through workflow stages with drag-and-drop
- Group related work with swimlanes
- Track progress with card counts and WIP limits
- Edit tasks with built-in or custom dialogs
- Support responsive layouts for desktop and mobile
Key Capabilities:
- Multiple column configurations (single-key, multi-key, stacked headers)
- Rich card customization (templates, selection, styling)
- Flexible data binding (local, remote, OData)
- Advanced features (localization, persistence, virtual scrolling)
Documentation and Navigation Guide
Getting Started
π Read: references/getting-started.md
- Installation and package dependencies
- Setting up Vite TypeScript project
- CSS imports and theme configuration
- Basic Kanban initialization
- Column setup with keyField mapping
- Populating cards with dataSource
- First working example
Columns Configuration
π Read: references/columns.md
- Single-key and multi-key column mapping
- Column header text and custom templates
- Toggle columns (expand/collapse functionality)
- Initially collapsed columns
- Column drag-and-drop reordering
- Stacked headers for grouping columns
- Column properties and configuration
Cards Management
π Read: references/cards.md
- Card structure (header and content)
- Drag-and-drop behavior within and between columns
- Card header and content field mapping
- Custom card templates
- Card selection (single and multiple)
- Showing/hiding card headers
- cardSettings configuration
Swimlane Grouping
π Read: references/swimlane.md
- Rendering swimlane rows for grouping
- keyField mapping for categorization
- Custom row text with textField
- Swimlane row templates
- Sorting swimlane rows (ascending/descending)
- Drag-and-drop across swimlanes
- Empty row rendering
- Card count display per swimlane
- Frozen rows for always-visible headers
Data Binding
π Read: references/data-binding.md
- Local data binding with JSON arrays
- DataManager integration
- Remote data binding with APIs
- OData services integration
- Web API binding
- CRUD operations with remote data
- Data adapters and adaptors
Dialog for Add/Edit/Delete
π Read: references/dialog.md
- Default built-in dialog
- Dialog fields mapping to data source
- Custom fields configuration
- Field types (String, Numeric, TextArea, DropDown, TextBox)
- Dialog templates for custom layouts
- Validation in dialog forms
- dialogSettings properties
Drag-and-Drop Features
π Read: references/drag-and-drop.md
- Card drag-and-drop within columns
- Card drag-and-drop between columns
- Column drag-and-drop reordering
- Swimlane drag-and-drop interactions
- Enabling/disabling drag-and-drop
- Drag-drop events and customization
Customization and Styling
π Read: references/customization.md
- Setting dimensions (height, width)
- CSS styling and custom themes
- Tooltip configuration
- Template customization options
- Built-in themes (Material, Bootstrap, Fabric, Tailwind)
- Custom theme creation
Advanced Features
π Read: references/advanced-features.md
- Localization for multi-language support
- State persistence across sessions
- Priority field mapping and visualization
- Card validation and WIP limits
- Virtual scrolling for large datasets
- Sort configuration options
Accessibility
π Read: references/accessibility.md
- WCAG compliance features
- Keyboard navigation support
- ARIA attributes for screen readers
- Accessible card and column interactions
Responsive Design
π Read: references/responsive-mode.md
- Responsive layout behavior
- Mobile and tablet device support
- Adaptive column rendering
- Touch interaction support
API Reference - Properties
π Read: references/properties.md
- Complete list of all Kanban properties
- dataSource, keyField, columns configuration
- cardSettings, swimlaneSettings, dialogSettings
- Drag-and-drop properties (allowDragAndDrop, allowColumnDragAndDrop)
- Dimension properties (height, width)
- Sorting, stacked headers, constraints
- Localization, persistence, virtualization
- Property types, defaults, and examples
API Reference - Events
π Read: references/events.md
- Complete list of all Kanban events
- Action events (actionBegin, actionComplete, actionFailure)
- Card interaction events (cardClick, cardDoubleClick, cardRendered)
- Drag-and-drop events (dragStart, drag, dragStop)
- Column drag events (columnDragStart, columnDrag, columnDrop)
- Dialog events (dialogOpen, dialogClose)
- Data events (dataBinding, dataBound)
- Event arguments and use cases
API Reference - Methods
π Read: references/methods.md
- Complete list of all Kanban public methods
- Card management (addCard, deleteCard, updateCard, getCardDetails)
- Column management (addColumn, deleteColumn, showColumn, hideColumn)
- Data query methods (getColumnData, getSwimlaneData, getSelectedCards)
- Dialog methods (openDialog, closeDialog)
- Utility methods (refresh, destroy, dataBind)
- Method signatures, parameters, and return types
Troubleshooting and How-To
π Read: references/troubleshooting.md
- Dynamically changing columns
- Filtering and searching cards
- Header double-click customization
- Common issues and solutions
- Performance optimization tips
Quick Start Example
// 1. Install the package
// npm install @syncfusion/ej2-kanban
// 2. Import Kanban component
import { Kanban } from '@syncfusion/ej2-kanban';
// 3. Define your data
const kanbanData = [
{
Id: 1,
Status: 'Open',
Summary: 'Analyze the new requirements',
Priority: 'Low',
Assignee: 'Nancy Davloio'
},
{
Id: 2,
Status: 'InProgress',
Summary: 'Improve application performance',
Priority: 'Normal',
Assignee: 'Andrew Fuller'
},
{
Id: 3,
Status: 'Testing',
Summary: 'Fix the issues reported',
Priority: 'High',
Assignee: 'Janet Leverling'
},
{
Id: 4,
Status: 'Close',
Summary: 'Validate new requirements',
Priority: 'Low',
Assignee: 'Nancy Davloio'
}
];
// 4. Initialize Kanban with basic configuration
const kanbanObj: Kanban = new Kanban({
dataSource: kanbanData,
keyField: 'Status',
columns: [
{ headerText: 'Backlog', keyField: 'Open' },
{ headerText: 'In Progress', keyField: 'InProgress' },
{ headerText: 'Testing', keyField: 'Testing' },
{ headerText: 'Done', keyField: 'Close' }
],
cardSettings: {
contentField: 'Summary',
headerField: 'Id'
}
});
// 5. Render to DOM element
kanbanObj.appendTo('#Kanban');
Common Patterns
Pattern 1: Kanban with Swimlanes
const kanbanObj: Kanban = new Kanban({
dataSource: kanbanData,
keyField: 'Status',
columns: [
{ headerText: 'To Do', keyField: 'Open' },
{ headerText: 'In Progress', keyField: 'InProgress' },
{ headerText: 'Testing', keyField: 'Testing' },
{ headerText: 'Done', keyField: 'Close' }
],
cardSettings: {
contentField: 'Summary',
headerField: 'Id'
},
swimlaneSettings: {
keyField: 'Assignee', // Group by assignee
allowDragAndDrop: true // Allow dragging across swimlanes
}
});
kanbanObj.appendTo('#Kanban');
Pattern 2: Kanban with Stacked Headers
const kanbanObj: Kanban = new Kanban({
dataSource: kanbanData,
keyField: 'Status',
columns: [
{ headerText: 'Backlog', keyField: 'Open' },
{ headerText: 'In Progress', keyField: 'InProgress' },
{ headerText: 'Review', keyField: 'Review' },
{ headerText: 'Done', keyField: 'Close' }
],
stackedHeaders: [
{ text: 'To Do', keyFields: 'Open' },
{ text: 'Development Phase', keyFields: 'InProgress, Review' },
{ text: 'Completed', keyFields: 'Close' }
],
cardSettings: {
contentField: 'Summary',
headerField: 'Id'
}
});
kanbanObj.appendTo('#Kanban');
Pattern 3: Remote Data Binding with OData
import { Kanban } from '@syncfusion/ej2-kanban';
import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
const dataManager = new DataManager({
url: 'https://services.syncfusion.com/js/production/api/Kanban',
adaptor: new ODataAdaptor
});
const kanbanObj: Kanban = new Kanban({
dataSource: dataManager,
keyField: 'Status',
columns: [
{ headerText: 'Backlog', keyField: 'Open' },
{ headerText: 'In Progress', keyField: 'InProgress' },
{ headerText: 'Testing', keyField: 'Testing' },
{ headerText: 'Done', keyField: 'Close' }
],
cardSettings: {
contentField: 'Summary',
headerField: 'Id'
}
});
kanbanObj.appendTo('#Kanban');
Pattern 4: Custom Card Template
const kanbanObj: Kanban = new Kanban({
dataSource: kanbanData,
keyField: 'Status',
columns: [
{ headerText: 'To Do', keyField: 'Open' },
{ headerText: 'In Progress', keyField: 'InProgress' },
{ headerText: 'Done', keyField: 'Close' }
],
cardSettings: {
contentField: 'Summary',
headerField: 'Id',
template: '#cardTemplate' // Reference to template element
}
});
kanbanObj.appendTo('#Kanban');
// Define template in HTML
// <script id="cardTemplate" type="text/x-template">
// <div class="custom-card">
// <div class="card-header">${Id}</div>
// <div class="card-content">${Summary}</div>
// <div class="card-footer">
// <span class="priority ${Priority}">${Priority}</span>
// <span class="assignee">${Assignee}</span>
// </div>
// </div>
// </script>
Key Configuration Options
Essential Properties
- dataSource: Array or DataManager - Card data source
- keyField: string - Field name that maps to column keyField values
- columns: Array - Column definitions with headerText and keyField
- cardSettings: Object - Card display configuration
headerField: string - Unique identifier field (mandatory)contentField: string - Main content display fieldtemplate: string - Custom card template
- swimlaneSettings: Object - Swimlane configuration
keyField: string - Field for grouping cardstextField: string - Display text for swimlane headersallowDragAndDrop: boolean - Enable cross-swimlane dragging
Common Options
- allowDragAndDrop: boolean - Enable card drag-and-drop (default: true)
- allowKeyboard: boolean - Enable keyboard interactions
- height: string/number - Board height
- width: string/number - Board width
- dialogSettings: Object - Dialog customization
- sortSettings: Object - Card sorting configuration
- stackedHeaders: Array - Grouped column headers
Common Use Cases
-
Software Development Sprint Board
- Columns: Backlog β In Progress β Code Review β Testing β Done
- Swimlanes: By assignee or by feature
- WIP limits per column
-
Customer Support Ticket Tracking
- Columns: New β Assigned β In Progress β Waiting β Resolved
- Swimlanes: By priority or support tier
- Custom card templates with ticket details
-
Content Publishing Workflow
- Columns: Ideas β Draft β Review β Approved β Published
- Swimlanes: By author or content type
- Dialogs for adding metadata
-
Manufacturing Process Flow
- Columns: Order Received β In Production β Quality Check β Shipped
- Swimlanes: By product line
- Remote data binding to production system
-
Recruitment Pipeline
- Columns: Applied β Phone Screen β Interview β Offer β Hired
- Swimlanes: By position or recruiter
- Card templates with candidate information
Related Skills
- Data Binding - For advanced DataManager usage
- Template Customization - For custom layouts
- Theming - For styling and themes
Next Steps: Read the getting-started reference to set up your first Kanban board, then explore specific features based on your requirements.
What ships with it: 15 files
235.9 KB alongside SKILL.md
references/
- accessibility.md17.0 KB
- advanced-features.md21.4 KB
- cards.md14.1 KB
- columns.md12.3 KB
- customization.md14.5 KB
- data-binding.md15.3 KB
- dialog.md14.6 KB
- drag-and-drop.md15.7 KB
- events.md13.0 KB
- getting-started.md9.4 KB
- methods.md16.6 KB
- properties.md14.0 KB
- responsive-mode.md19.4 KB
- swimlane.md15.0 KB
- troubleshooting.md23.5 KB