You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetmvc/Kanban/Swimlanes.md
+185Lines changed: 185 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,191 @@ The following output is displayed as a result of the above code example.
64
64
65
65

66
66
67
+
## Customized swimlane header text
68
+
69
+
You can change the swimlane row header text using the swimlane `Headers` property. In this property, the text is changed using the `Text` property and the corresponding value is mapped into the `Key` property based on `SwimlaneKey` datasource mapping.
public partial class KanbanController : Controller
107
+
{
108
+
List<Tasks> Task = new List<Tasks>();
109
+
110
+
// GET: /Kanban/
111
+
public ActionResult KanbanFeatures()
112
+
{
113
+
Task.Add(new Tasks(6, "Close", "Arrange a web meeting with the customer to get the login page requirements.", "Others", "Low", "Meeting", 2, "Janet", "../content/images/kanban/3.png", 1));
The following output is displayed as a result of the above code example.
157
+
158
+

159
+
160
+
## Empty swimlane row on Kanban board
161
+
162
+
You can create an empty swimlane row by enabling the `ShowEmptySwimlane` property based on swimlane headers `Key` value mapping. If no data is present, then the empty swimlane row is rendered on the Kanban board based on the specified swimlane headers `Key`.
0 commit comments