Drag and drop between datagrids

Hi, does any documentation about drag and drop between datagrids exists like in Cuba?

Hello,

take a look at this Vaadin article: Drag and Drop between two Grids (since 8.2). To work with Vaadin Grid component you can use unwrap() method of DataGrid:

@Autowired
private DataGrid<Employee> employeesDataGrid;

@Subscribe
public void onInit(InitEvent event) {
    JmixGrid<Employee> jmixGrid = employeesDataGrid.unwrap(JmixGrid.class);

    //...
}
1 Like