A Column for a slush bucket field. Provides a dual-list selection interface for moving items between available and selected lists.
an object that can include all base Column properties
Column
Optional
Script method to populate the slush bucket options. Example: 'getMethod()' - a server-side script that returns available options
https://docs.servicenow.com/csh?topicname=table-api-now-ts.html&version=latest
const selectedItems = SlushBucketColumn({ label: 'Selected Items',})// Using script methodconst assignedRoles = SlushBucketColumn({ label: 'Assigned Roles', script: 'getRoles()', mandatory: true,}) Copy
const selectedItems = SlushBucketColumn({ label: 'Selected Items',})// Using script methodconst assignedRoles = SlushBucketColumn({ label: 'Assigned Roles', script: 'getRoles()', mandatory: true,})
A Column for a slush bucket field. Provides a dual-list selection interface for moving items between available and selected lists.