DataGrid model

I have a table with CRUD operation, but when I add a new element I have to choose what type it will be for example (adult or child) and according to the chosen type it is a form or another with different fields, although in the table I will always show the same fields, Is it possible to do this?

Hi @angelru,

Welcome to the Radzen community!

You can probably do that by showing and hiding components through their Visible property. For example set it like Visible=@(type =="child").

Is it possible to pass a model to the component of the modal and show the fields in that modal?

Yes. You can check our demo here - the DialogCardPage tab uses a parameter to get the model from the DB.