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: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,14 @@ If each value needs another icon, the you can paste a JSON in this field contain
96
96
Icon and color doesn't have to be both defined. You can specify only the icon or only the color.
97
97
Actually the color shouldn't be necessary at this point. I intend to have it more for CanvasApps later on.
98
98
99
+
If you want to define the configuration for a boolean (two option) column, you need to define for values "0" - false and "1" - true.
100
+
So boolean configurations could look like this:
101
+
```javascript
102
+
{"0": {"icon":"Sad"}, "1":{"icon":"Emoji2"}}
103
+
```
104
+
105
+
106
+
99
107
❗ The input length is limited to 100 char for now. So only a short JSON will pass. The next step will be to introduce the 3rd possibility for "Icon definition": "Environment variables". There the place is not limited, while they are solution aware.
100
108
101
109
@@ -104,6 +112,15 @@ If you need more columns, you can define "Optionset 2" and "iconConfig2" paramet
104
112
❗ If only "Optionset x" is defined, but not the "iconConfig x", then the "Default icon name" will be used.
105
113
106
114
115
+
## Editable version
116
+
117
+
Starting with the release 9, you can make the boolean (two option) columns editable. To do that, just choose the "Editable" option in the PCF customizing.
0 commit comments