We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ca255 commit 3a87372Copy full SHA for 3a87372
internal/comp/column.go
@@ -79,7 +79,7 @@ func (c Column) Label(value string) Column {
79
}
80
81
// QuickEdit sets the quick edit configuration
82
-func (c Column) QuickEdit(value string) Column {
+func (c Column) QuickEdit(value any) Column {
83
return c.set("quickEdit", value)
84
85
@@ -167,3 +167,8 @@ func (c Column) Buttons(value ...any) Column {
167
func (c Column) PopOver(value any) Column {
168
return c.set("popOver", value)
169
170
+
171
+// Type sets the column type, for example: operation
172
+func (c Column) Type(value string) Column {
173
+ return c.set("type", value)
174
+}
0 commit comments