Function: SlushBucketColumn(config)
A Column for a slush bucket field. Provides a dual-list selection interface for moving items between available and selected lists.
Usage
const selectedItems = SlushBucketColumn({
label: 'Selected Items',
})
// Using script method
const assignedRoles = SlushBucketColumn({
label: 'Assigned Roles',
script: 'getRoles()',
mandatory: true,
})
Parameters
config
object
an object that can include all base Column properties
Properties:
- script (optional):
stringScript method to populate the slush bucket options. Example: 'getMethod()' - a server-side script that returns available options