Hi, I’m trying to use categorization but it’s showing me all the elements in vertical, and not the tabs, I use the example provide in the website.
My json forms looks something like this:
<ThemeProvider theme={theme}>
<JsonForms
schema={memoizedSchema}
uischema={memoizedUiSchema}
data={formData}
renderers={materialRenderers}
cells={materialCells}
onChange={({ data: updatedData, errors: newErrors }) => {
setFormData(updatedData);
setErrors(newErrors || []);
onFormDataChange(updatedData);
}}
ajv={memoizedAjv}
i18n={customI18n}
validationMode={applyValidation ? validateAndShow : validateAndHide}
readonly={readOnly}
/>
</ThemeProvider>
Any idea? thanks
