Form Builder in ReactJS with Material UI - reactjs

Do we have a Form Builder that creates dynamic forms with all the form elements in ReactJS using Material UI?
We have found one open-source form builder which is forms.io. It has very extensive features. But it comes with Reactjs and Bootstrap CSS.
Any suggestion for the form builder which uses reactjs with MUI?

You can refer to the FormControl API on MUI. It would be better to create your own form using the MUI components along with React rather than depending on another extrnal library as it would provide more flexibility with your form in long term. You can use Formik to validate your form components easily.
If you want to go ahead with a form builder library, try React Material UI Form Builder.

Related

How to use MUI inside CMS library?

We are currently using React Material UI for a big e-commerce site that requires a CMS.
The problem is that we need to give the elements in the CMS (that are configurable as pure HTML containers) the ability to use the same component animation and style as what we used in the MUI configuration in react.
Is there any way we can achieve this?
In other words, how can we create a html library from React Material UI?

AgGrid React Material UI

Any good examples out there of using AgGrid with React Material UI. Especially around creating custom themes. The examples on the AgGrid site are around css / scss not styled components the preferred approach with React Material UI.
Although it might not be exactly what you are looking for. Try searching for
component types and custom renderers as it contributes to customizing your ag-grid look

Using Material UI Theme with components in a library

I have created a MUI theme which works as expected. However, I am also using a custom component library created using create-react-library(https://www.npmjs.com/package/create-react-library) in my application. The library uses the material UI components too. The problem I am facing is that the theme I have created in my application is not getting applied to the components in the library.
This is behaving weird because if my page uses only components from my custom library then the theme is not applied to the library component, however, if the page uses a mix of custom library components and Material UI components(like Button, TextField) then the theme is applied.

Form validation library in react js

I am new to react js.Is there any form validation library in react js like angular has reactive forms and template driven forms and its own set of validation rules like valid,dirty,pristine.
I recommend using Formik it's very easy and complete. It has 14k stars on github, pretty good!

Tabulator - Multiple custom filter implementation in React JS app

I have a react app and have implemented Tabuator as data grid library.
But need to have multple custom filters like as image attached.
I can see that there is jquery example when I search multiple filters in documentation, but need in react js.
Do ReactTabulator component have any props for the above situation ?
TIA,
Sid

Resources