A Column for a floating-point number type field. Stores decimal numbers with floating-point precision.
Optional
Number of decimal places to display. Controls the precision of the floating-point number.
https://docs.servicenow.com/csh?topicname=table-api-now-ts.html&version=latest
const price = FloatColumn({ label: 'Price', default: 99.99, scale: 2,})const temperature = FloatColumn({ label: 'Temperature (Celsius)', default: 23.5, scale: 1, mandatory: true,}) Copy
const price = FloatColumn({ label: 'Price', default: 99.99, scale: 2,})const temperature = FloatColumn({ label: 'Temperature (Celsius)', default: 23.5, scale: 1, mandatory: true,})
A Column for a floating-point number type field. Stores decimal numbers with floating-point precision.