custom/dynamic tooltip title for Fields and Option Lists #907
Answered
by
jakeboone02
adriane-slalom
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
jakeboone02
Jun 26, 2025
Replies: 1 comment 1 reply
-
|
That does sound like a good idea, but no, the tooltips aren't dynamic like that. I think what I'd probably recommend is wrapping the default Working sandbox here: https://codesandbox.io/p/devbox/jg7tg4?file=%2Fsrc%2FApp.tsx%3A36%2C1-45%2C1 const FieldSelector = (props: FieldSelectorProps) => (
<ValueSelector
{...props}
title={
(getOption(props.schema.fields, props.value!)?.description as string) ??
props.title
}
/>
);The answer is really the same to your other question, too: Override the component and render whatever you need. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
adriane-slalom
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


That does sound like a good idea, but no, the tooltips aren't dynamic like that. I think what I'd probably recommend is wrapping the default
fieldSelectorcomponent (ValueSelector) like below.Working sandbox here: https://codesandbox.io/p/devbox/jg7tg4?file=%2Fsrc%2FApp.tsx%3A36%2C1-45%2C1
The answer is really the same to your other question, too: Override the component and render whatever you need.