OptionalCellstyles column's cells using css classes
External CSS file: To be implemented in a future release..
OptionalCellstyles column's cells using style
The !important rule doesn't work, so if you'd like to override style that has been set with !important, use CellCSSClass instead.
OptionalDisplayWhether to display a link to the item in the cell.
When true and the cell value is empty, a generic "Link" text is displayed instead.
SP source: the link is constructed automatically from SharePoint item metadata.
REST source: the provider must include __displayLink (absolute URL string) in the
response item. Without it, this option has no effect for REST sources.
searchWp-api-contract.md — Reserved Item Fields
OptionalHeaderstyles the column's header using css classes
External CSS file: To be implemented in a future release..
OptionalHeaderstyles the column's header using style
The !important rule doesn't work, so if you'd like to override style that has been set with !important, use HeaderCSSClass instead.
OptionalHiddenHides the table column.
OptionalNameOverrides the column header label.
When omitted, the label is taken from the SharePoint field Title (resolved by InternalName).
For REST sources without a matching SP field, InternalName is used as final fallback.
OptionalRenderName of a function in CustomScript that returns an HTML string for the cell. The function receives (value: unknown, row: Record<string, unknown>) and must return a string. The returned HTML is sanitized before rendering.
Configuration for a single result table column.
The column header label is resolved in the following order:
Name— explicit override defined here (highest priority)Title— resolved from the site's field metadata byInternalNameInternalName— used as fallback when no SP field is found (REST source only)You can also modify field's SharePoint properties (see SPField)