Another question about layouts, is there a way to set a layout to a specific component? for example, I have a form with three columns, but I want to set the last component, a TextArea, that fill the three columns
Ok, I figure it out, don’t know if is the right answer, but if someone else is having the same question, I fix it like this:
crud.getCrudFormFactory().setFieldCreationListener("comments", field->{
((TextArea)field).getElement().setAttribute("colspan", "2");
});