We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do you plan support for dynamic titles for collapsible fields of array types ? For example title could be one of the property of array item:
items.title = items.properties.title.value
For now it only shows same title for all items "itemsTitle" and so it is not so readable in collapsed state
const schema = { type: "object", properties: { arrayField:{ type: "array", items: { type: "object", title: "itemsTitle", properties: { title: { type: "string" }, number: { type: "number" } } } } } } const uiSchema = { arrayField: { items: { "ui:field": "collapsible", collapse: { field: "ObjectField" } } } }
live demo
The text was updated successfully, but these errors were encountered:
I would also like to use this feature - is there anyway to accomplish this?
Sorry, something went wrong.
I am also looking to dynamically label collapsible field titles. Any suggestings would be greatly appreciated.
Any Solution I am looking for this too?
No, not that I am aware of.
No branches or pull requests
Do you plan support for dynamic titles for collapsible fields of array types ?
For example title could be one of the property of array item:
For now it only shows same title for all items "itemsTitle" and so it is not so readable in collapsed state
live demo
The text was updated successfully, but these errors were encountered: