1. 程式人生 > 其它 >UI元件Kendo UI for jQuery資料管理入門指南 - TaskBoard概述

UI元件Kendo UI for jQuery資料管理入門指南 - TaskBoard概述

Kendo UI TaskBoard允許您輕鬆組織專案並跟蹤它們的狀態,TaskBoard提供了一個乾淨且使用者友好的介面,使您能夠管理任務、筆記、專案、人員或其他型別的專案。 該元件顯示列(通道),可以表示不同型別的專案/任務狀態。 任務被視覺化為卡片,可以通過模板輕鬆定製。 您可以對列中的卡片重新排序,或將它們拖放到另一列中。

Kendo UI for jQuery最新官方正式版下載

初始化任務板

下面的示例演示如何從現有的 <div> 元素初始化 TaskBoard。

 

<div id="taskBoard"></div>

<script>
var cardsData = [
{ id: 1, title: "Campaigns", order: 1, description: "Create a new landing page for campaign", status: "todo", color: "orange" },
{ id: 2, title: "Newsletters", order: 2, description: "Send newsletter", status: "todo", color: "blue" },
{ id: 3, title: "Ads Analytics", order: 3, description: "Review ads performance", status: "todo", color: "green" },
{ id: 4, title: "SEO Analytics", order: 4, description: "Review SEO results", status: "inProgress", color: "blue" },
{ id: 5, title: "Customer Research", order: 5, description: "Interview focus groups", status: "inProgress", color: "orange" },
{ id: 6, title: "Testimonials & Case Studies", order: 6, description: "Publish new case study", status: "done", color: "green" },
{ id: 7, title: "Content", order: 7, description: "Plan content for podcasts", status: "done", color: "green" },
{ id: 8, title: "Customer Journey", order: 8, description: "Update virtual classrooms' experience", status: "done", color: "blue" },
];

$("#taskBoard").kendoTaskBoard({
columns: [
{ text: "To-Do", status: "todo" },
{ text: "In Progress", status: "inProgress" },
{ text: "Done", status: "done" }
],
dataSource: {
data: cardsData,
schema: {
model: {
id: "id",
fields: {
id: { type: "number" },
order: { type: "number", defaultValue: 0 },
title: { field: "title", defaultValue: "No title" },
description: { field: "description", validation: { required: true } },
}
}
}
},
dataStatusField: "status",
dataOrderField: "order",
dataCategoryField: "color",
height: 750,
resources: [
{
field: "color",
dataSource: [
{ value: "orange", color: "#ffa500" },
{ value: "green", color: "#008000" },
{ value: "blue", color: "#0000ff" }
]
}
]
});
</script>

 

功能和特點
  • 資料繫結
  • 卡片
  • 編輯
  • 資源
  • 搜尋
  • 模板
  • 工具欄
  • 可訪問性
引用現有例項

要獲取對現有 TaskBoard 例項的引用:

1. 使用jQuery.data()方法。

2. 建立引用後,使用 TaskBoard API 控制其操作。

var taskBoard = $("#taskBoard").data("kendoTaskBoard");

Kendo UI for jQuery | 下載試用

Kendo UI for jQuery是完整的jQuery UI元件庫,可快速構建出色的高效能響應式Web應用程式。Kendo UI for jQuery提供在短時間內構建現在Web應用程式所需要的一切,從多個UI元件中選擇,並輕鬆地將它們組合起來,創建出酷炫響應式的應用程式,同時將開發時間加快了50%。


瞭解最新Kendo UI最新資訊,請關注Telerik中文網!