Jmix version: 2.2.3
Jmix Studio plugin version: 2.2.3-241
IntelliJ IDEA 2024.1 (Ultimate Edition)
I want to use jmix export excel action for my programmatically created vaadin grid component. How can i do this. My grid is not created through xml, rather hard coded with Vaadin grid component:
JmixGrid<?> simpleGrid = uiComponents.create(JmixGrid.class);
Action excelExportAction = ...
simpleGrid.addAction(excelExportAction);
Is this even possible? If so, what is the optimal way?
Note:
Grid is not built around some entity. it’s just some DTO class.