A Column for a multiple line small text area field. Allows multi-line text input without the complexity of rich text editing.
an object that can include all base Column properties
Column
https://docs.servicenow.com/csh?topicname=table-api-now-ts.html&version=latest
const description = MultiLineTextColumn({ label: 'Description', maxLength: 1000,})const notes = MultiLineTextColumn({ label: 'Notes', default: 'Enter notes here...',}) Copy
const description = MultiLineTextColumn({ label: 'Description', maxLength: 1000,})const notes = MultiLineTextColumn({ label: 'Notes', default: 'Enter notes here...',})
A Column for a multiple line small text area field. Allows multi-line text input without the complexity of rich text editing.