Angular how to pass data to custom renderer

Usually renderers work with scoped data, i.e. what the scope in their UI Schema element refers to. The scoped data is available via this.data.

If you’d like to access the whole data object in your renderer then you can do so via the JsonFormsAngularService injected in the constructor of your custom renderer.

1 Like