Data binding in Angular Kanban component
27 Apr 202424 minutes to read
The Kanban uses DataManager
, which supports both RESTful data service binding and JavaScript object array binding. The dataSource
property of Kanban can be assigned either with the instance of DataManager
or JavaScript object array collection, as it supports the following two data binding methods:
- Local data
- Remote data
Local data
To bind local JSON data to the Kanban, you can simply assign a JavaScript object array to the dataSource
property. The JSON object dataSource can also be provided as an instance of DataManager
and assigned to the Kanban dataSource
property.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component } from '@angular/core';
import { CardSettingsModel } from '@syncfusion/ej2-angular-kanban';
import { kanbanData } from './datasource';
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<ejs-kanban keyField='Status' [dataSource]='data' [cardSettings]='cardSettings'>
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public data: Object[] = kanbanData;
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
By default,
DataManager
usesJsonAdaptor
for binding local data.
Remote data
To bind remote data to kanban component, assign service data as an instance of DataManager
to the dataSource
property. To interact with remote data source, provide the endpoint url.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component } from '@angular/core';
import { CardSettingsModel, DialogEventArgs } from '@syncfusion/ej2-angular-kanban';
import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<ejs-kanban keyField='Status' [dataSource]='dataManager' [cardSettings]='cardSettings' [allowDragAndDrop]='false' (dialogOpen)="dialogOpen($event)">
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
public dataManager: DataManager = new DataManager({
url: 'https://services.syncfusion.com/angular/production/api/Kanban',
adaptor: new ODataAdaptor,
crossDomain: true
});
public dialogOpen(args: DialogEventArgs): void {
args.cancel = true;
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
By default,
DataManager
uses ODataAdaptor for remote data-binding.
OData services
OData
is a standardized protocol for creating and consuming data. You can retrieve data from OData service using the DataManager. Refer to the following code example for remote Data binding using OData service.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component } from '@angular/core';
import { CardSettingsModel, DialogEventArgs } from '@syncfusion/ej2-angular-kanban';
import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<ejs-kanban keyField='Status' [dataSource]='dataManager' [cardSettings]='cardSettings' [allowDragAndDrop]='false' (dialogOpen)="dialogOpen($event)">
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
public dataManager: DataManager = new DataManager({
url: 'https://services.syncfusion.com/angular/production/api/Kanban',
adaptor: new ODataAdaptor,
crossDomain: true
});
public dialogOpen(args: DialogEventArgs): void {
args.cancel = true;
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
OData v4 services
The ODataV4 is an improved version of OData protocols, and the DataManager
can also retrieve and consume OData v4 services. For more details on OData v4 services, refer to the odatadocumentation
. To bind OData v4 service, use the ODataV4Adaptor.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component } from '@angular/core';
import { CardSettingsModel, DialogEventArgs } from '@syncfusion/ej2-angular-kanban';
import { DataManager, ODataV4Adaptor } from '@syncfusion/ej2-data';
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<ejs-kanban keyField='ContactTitle' [dataSource]='dataManager' [cardSettings]='cardSettings' [allowDragAndDrop]='false' (dialogOpen)="dialogOpen($event)">
<e-columns>
<e-column headerText='Order Administrator' keyField='Order Administrator'></e-column>
<e-column headerText='Sales Representative' keyField='Sales Representative'></e-column>
<e-column headerText='Export Administrator' keyField='Export Administrator'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public cardSettings: CardSettingsModel = {
contentField: 'ContactName',
headerField: 'SupplierID'
};
public dataManager: DataManager = new DataManager({
url: 'https://services.odata.org/v4/northwind/northwind.svc/Suppliers',
adaptor: new ODataV4Adaptor,
});
public dialogOpen(args: DialogEventArgs): void {
args.cancel = true;
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
Web API
You can use WebApiAdaptor to bind kanban with Web API created using OData endpoint.
import { Component } from '@angular/core';
import { CardSettingsModel, DialogEventArgs } from '@syncfusion/ej2-angular-kanban';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
@Component({
selector: 'app-root',
template: `<ejs-kanban keyField='Status' [dataSource]='dataManager' [cardSettings]='cardSettings' [allowDragAndDrop]='false' (dialogOpen)="dialogOpen($event)">
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
private dataManager: DataManager = new DataManager({
url: '/api/Tasks',
adaptor: new WebApiAdaptor
});
public dialogOpen(args: DialogEventArgs): void {
args.cancel = true;
}
}
Below server-side controller code to get the Kanban data.
[HttpGet]
public object Get()
{
var data = OrdersDetails.GetAllRecords().ToList();
return data;
}
URL adaptor
The CRUD (Create, Read, Update and Delete) actions can be performed easily on Kanban cards using the various adaptors available within the DataManager
. Most preferably, we will be using UrlAdaptor
for performing CRUD actions on Kanban.
The CRUD operation in Kanban can be mapped to server-side controller actions using the properties insertUrl
, removeUrl
, updateUrl
, and crudUrl
.
-
insertUrl
– You can perform a single insertion operation on the server-side. -
updateUrl
– You can update single data on the server-side. -
removeUrl
– You can remove single data on the server-side. -
crudUrl
– You can perform bulk data operation on the server-side.
import { Component } from '@angular/core';
import { CardSettingsModel } from '@syncfusion/ej2-angular-kanban';
import { DataManager, UrlAdaptor } from '@syncfusion/ej2-data';
@Component({
selector: 'app-root',
template: `<ejs-kanban keyField='Status' [dataSource]='dataManager' [cardSettings]='cardSettings'>
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
private dataManager: DataManager = new DataManager({
url: 'Home/DataSource',
updateUrl: 'Home/Update',
insertUrl: 'Home/Insert',
removeUrl: 'Home/Delete',
adaptor: new UrlAdaptor(),
crossDomain: true
});
}
The server-side controller code to handle the CRUD operations are as follows.
private NORTHWNDEntities db = new NORTHWNDEntities();
public ActionResult DataSource() {
var DataSource = db.Tasks.ToList();
return Json(DataSource, JsonRequestBehavior.AllowGet);
}
public ActionResult Insert(Params value) {
//Insert card data into the database
return Json(value, JsonRequestBehavior.AllowGet);
}
public ActionResult Update(Params value) {
//Update card data into the database
return Json(value, JsonRequestBehavior.AllowGet);
}
public void Delete(Params value) {
//Delete card data from the database
}
public class Params {
public int Id { get; set; }
public string Status { get; set; }
public string Summary { get; set; }
public string Assignee { get; set; }
}
Custom adaptor
It is possible to create your own custom adaptor by extending the built-in available adaptors. The following example demonstrates the custom adaptor usage and how to add a custom field TaskId
for the cards by overriding the built-in response processing using the processResponse
method of the ODataAdaptor
.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component } from '@angular/core';
import { CardSettingsModel, DialogEventArgs } from '@syncfusion/ej2-angular-kanban';
import { DataManager, ODataAdaptor } from '@syncfusion/ej2-data';
class TaskIdAdaptor extends ODataAdaptor {
override processResponse(): Object {
let i = 0;
// calling base class processResponse function
let original: any = super.processResponse.apply(this, arguments as any);
// adding Task Id
original.forEach((item: any) => item['Id'] = 'Task - ' + ++i);
return original;
}
}
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<ejs-kanban keyField='Status' [dataSource]='dataManager' [cardSettings]='cardSettings' [allowDragAndDrop]='false' (dialogOpen)="dialogOpen($event)">
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
public dataManager: DataManager = new DataManager({
url: 'https://services.syncfusion.com/angular/production/api/Kanban',
adaptor: new TaskIdAdaptor
});
public dialogOpen(args: DialogEventArgs): void {
args.cancel = true;
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
Sending additional parameters to the server
To add a custom parameter to the data request, use the addParams method of Query class. Assign the Query object with additional parameters to the kanban query
property.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component } from '@angular/core';
import { CardSettingsModel, DialogEventArgs } from '@syncfusion/ej2-angular-kanban';
import { DataManager, ODataAdaptor, Query } from '@syncfusion/ej2-data';
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<ejs-kanban keyField='Status' [dataSource]='dataManager' [cardSettings]='cardSettings' [allowDragAndDrop]='false' (dialogOpen)="dialogOpen($event)" [query]='query'>
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
public dataManager: DataManager = new DataManager({
url: 'https://services.syncfusion.com/angular/production/api/Kanban',
adaptor: new ODataAdaptor
});
public query: Query = new Query().addParams('ej2kanban', 'true');
public dialogOpen(args: DialogEventArgs): void {
args.cancel = true;
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
The parameters added using the
query
property will be sent along with the data request for every kanban action.
Handling HTTP error
During server interaction from the kanban, some server-side exceptions may occur, and you can acquire those error messages or exception details in client-side using the actionFailure
event.
The argument passed to the actionFailure
event contains the error details returned from the server.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component, ViewChild } from '@angular/core';
import { CardSettingsModel, KanbanComponent } from '@syncfusion/ej2-angular-kanban';
import { DataManager } from '@syncfusion/ej2-data';
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<ejs-kanban #Kanban keyField='Status' [dataSource]='dataManager' [cardSettings]='cardSettings' (actionFailure)="onActionFailure($event)">
<e-columns>
<e-column headerText='To do' keyField='Open'></e-column>
<e-column headerText='In Progress' keyField='InProgress'></e-column>
<e-column headerText='Testing' keyField='Testing'></e-column>
<e-column headerText='Done' keyField='Close'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
@ViewChild('Kanban') public kanban?: KanbanComponent;
public cardSettings: CardSettingsModel = {
contentField: 'Summary',
headerField: 'Id'
};
public dataManager: DataManager = new DataManager({
url: 'http://some.com/invalidUrl'
});
onActionFailure(e: Error): void {
let span: HTMLElement = document.createElement('span');
((this.kanban as KanbanComponent).element.parentNode as ParentNode).insertBefore(span, (this.kanban as KanbanComponent).element);
span.style.color = '#FF0000'
span.innerHTML = 'Server exception: 404 Not found';
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
The
actionFailure
event will be triggered not only for the server errors, but also when there is an exception while processing the kanban actions.
Loading data via ajax
You can use Kanban dataSource
property to bind the datasource to Kanban from external ajax request. In the following code, we have fetched the datasource from the server using ajax request and provided that to the dataSource
property by using the onSuccess event of ajax.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { KanbanModule } from '@syncfusion/ej2-angular-kanban'
import { Component, ViewChild } from '@angular/core';
import { KanbanComponent, CardSettingsModel, DialogEventArgs } from '@syncfusion/ej2-angular-kanban';
import { Ajax } from '@syncfusion/ej2-base';
import { DataManager } from '@syncfusion/ej2-data';
@Component({
imports: [
KanbanModule
],
standalone: true,
selector: 'app-root',
template: `<input type="button" id="btn" (click)="click()" value="Click"/>
<ejs-kanban #Kanban keyField='ShipCountry' [dataSource]='dataManager' [cardSettings]='cardSettings' (actionFailure)="onActionFailure($event)">
<e-columns>
<e-column headerText='Denmark' keyField='Denmark'></e-column>
<e-column headerText='Brazil' keyField='Brazil'></e-column>
<e-column headerText='Switzerland' keyField='Switzerland'></e-column>
<e-column headerText='Germany' keyField='Germany'></e-column>
</e-columns>
</ejs-kanban>`
})
export class AppComponent {
onActionFailure($event: any) {
throw new Error('Method not implemented.');
}
@ViewChild('Kanban') public kanban?: KanbanComponent;
public dataManager?: DataManager;
public cardSettings: CardSettingsModel = {
contentField: 'ShippedDate',
headerField: 'OrderID'
};
click() {
const kanban: KanbanComponent = this.kanban as KanbanComponent; // Grid instance
const ajax = new Ajax("https://services.syncfusion.com/angular/production/api/Orders", "GET");
ajax.send();
ajax.onSuccess = (data: string) => {
kanban.dataSource = JSON.parse(data);
};
}
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
- If you bind the dataSource from this way, then it acts like a local dataSource. So you cannot perform any server-side crud actions.