The display property in a Nextedy POWERSHEET column configuration controls which property of a referenced entity is shown in the cell when the column is bound to a navigation property (a relationshi
Specifies which property of a referenced entity to display. Accepts a property name (title, titleOrName, id) or a JavaScript arrow function string for custom rendering.
Both display and render can accept JavaScript function strings, but they serve different purposes:
Property
Primary Use
When to Use
display
Property name selection for navigation columns
Use when you need to select which property of a referenced entity to show, or when using a simple JS function
render
Custom HTML cell rendering
Use when display is already used for property selection and you need additional rendering control. Can also reference predefined renderer names.
When both display and render are set on the same column, render typically takes precedence for visual output. Use display for property selection and render for custom HTML when both are needed.