Hi,
is it possibile to add Vaadin TreeGrid to a View ?
Using Jmix UI ?
I can add it from code on View Controller
‘’’
import com.vaadin.flow.component.treegrid.TreeGrid;
import com.vaadin.flow.component.button.Button;public void buildDemo() { final Button btn = new Button("Save"); btn.addThemeVariants(ButtonVariant.LUMO_ERROR); final TreeGrid treeGrid = new TreeGrid<GeoTreeNodeEntity>(); mainFlexLayout.add(btn); mainFlexLayout.add(treeGrid); }
‘’’
Is there a way to add any Vaadin standard compoent to a View
using Jmix UI?
Might it be useful to have all the standard Vaadin components in the Jmix UI ?