uiSchema propagate options to generated controls

Is there a way to propagate options to controls which are generated inside a Group?

[original thread by Wojciech Tutro]

I’m assuming you’re talking about the generated ui schema of the object renderer which uses a Group as its root element. If not, and you specify the Group yourself, then you can obviously also just modify the options of its children.

There are three ways to influence the options of a detail schema:

  • You can just specify the ui schema of the object manually, via the detail option in the ui schema, see the docs. As you then specify the detail yourself you can also set arbitrary options.

  • Instead of manually specifying the detail ui schema via the detail option you can also register it to the ui schema registry which is passed as one of the props to the JsonForms component. It uses the same tester approach as the renderers itself. Your tester then needs to apply to the object of your choice. As you then specify the detail yourself you can also set arbitrary options.

  • The last option is to use the config object as explained in the answer to your other question

[Wojciech Tutro]

Many thanks for You answer @sdirix(sdirix). I will check those options!