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
return"The HTML template of the column header in the expanded state";
34
+
}),
35
+
collapsedTemplate?:template(column=> {
36
+
return"The HTML template of the column header in the collapsed state";
37
+
})
32
38
};
33
39
~~~
34
40
@@ -80,8 +86,10 @@ To configure the columns appearance, in the **columnShape** object you can speci
80
86
~~~
81
87
:::
82
88
83
-
-`fixedHeaders` - (optional) freezes column headers during vertical scroll (*true* by default). Scroll must be enabled in Kanban itself (height must be limited).
84
-
-`css` - (optional) a function returns a css class that applies to columns conditionally
89
+
-`fixedHeaders` - (optional) freezes column headers during vertical scroll (*true* by default). Scroll must be enabled in Kanban itself (height must be limited)
90
+
-`css` - (optional) a function that returns a css class that applies to columns conditionally
91
+
-`headerTemplate` - (optional) the HTML template of the column header in the expanded state
92
+
-`collapsedTemplate` - (optional) the HTML template of the column header in the collapsed state
0 commit comments