In the example, I am trying to hide user2 while maintaining its space when something is written in the User1 field. Now I am trying to use 2 columns to achieve this.
If I keep cols: an empty {}, the space it occupies is too large. I’m trying to find a solution that isn’t readonly. But without breaking the aesthetics
To keep the space while hiding the component you can use spacer with the predefined height of the space you need and set hidden: true to keep this space hidden at first render.
And then you can use hide and show methods depending on your conditions.
Please check the example: Code Snippet
Also you can use showBatch method if you want to make visible or hidden several components.