Navigation :
StyleCode Property: fieldColor
fieldColor
Specifies the background color of the field.
Examples
// Example: form > entry
read form with
SKU: text
Maximum: number
show form "My Form" a1b1 with
SKU { sc }
Maximum
// Example: slicepicker > entry
table Items = with
[| as Id |]
[| "A" |]
[| "B" |]
[| "C" |]
table Slices[slice] = slice by [Items.Id] title: "Slice \{Items.Id}"
show slicepicker "Pick a slice" a1b3 with
same(Items.Id) { fieldColor: "#FF6347" }
// Example: slicetree > entry
table Items = with
[| as Id |]
[| "A" |]
[| "B" |]
[| "C" |]
table Slices[slice] = slice by [Items.Id] title: "Slice \{Items.Id}"
show slicetree "Pick a slice" a1b3 with
same(Items.Id) { fieldColor: "#FF6347" }