Values that should invalidate the cell cache when using dynamic collections.
Optionaldir
dir?:string
Optionaldownload
download?:string|boolean
Causes the browser to download the linked URL. A string may be provided to suggest a file name. See MDN.
OptionalhasChildItems
hasChildItems?:boolean
Whether this row has children, even if not loaded yet.
Optionalhidden
hidden?:boolean
Optionalhref
href?:string
OptionalhrefLang
hrefLang?:string
Hints at the human language of the linked URL. SeeMDN.
Optionalid
id?:Key
The unique id of the row.
Optionalinert
inert?:boolean
OptionalisDisabled
isDisabled?:boolean
Whether the row is disabled.
Optionallang
lang?:string
OptionalnoTrack
noTrack?:boolean
OptionalonAction
onAction?:()=>void
Handler that is called when a user performs an action on the row. The exact user event depends on
the collection's selectionBehavior prop and the interaction modality.
Not recommended – use onPress instead.onClick is an alias for onPress
provided for compatibility with other libraries. onPress provides
additional event details for non-mouse interactions.
Overrides the default DOM element with a custom render function.
This allows rendering existing components with built-in styles and behaviors
such as router links, animation libraries, and pre-styled components.
Requirements:
You must render the expected element type (e.g. if <button> is expected, you cannot render an <a>).
Only a single root DOM element can be rendered (no fragments).
You must pass through props and ref to the underlying DOM element, merging with your own prop as appropriate.
OptionalrouterOptions
routerOptions?:NavigateOptions
Options for the configured client side router.
Optionalstyle
style?:StyleOrFunction<RowRenderProps>
The inline style for the element. A function may be provided to compute the style based on component state.
The CSS className for the element. A function may be provided to compute the class based on component state.