Open haulmont-git opened 7 years ago
This bug is pre-7, so it might not seem relevant, but I am seeing it in 7.1.1 with the new generic GUI framework.
Fixing this might be as easy as adding Table to DataGridEditorComponentGenerationStrategy#createComponent
. Something like this:
if (context.getComponentClass() == null
|| !(DataGrid.class.isAssignableFrom(context.getComponentClass())
|| Table.class.isAssignableFrom(context.getComponentClass())) {
return null;
}
I would then suggest renaming the class because it's not just for DataGrid.
https://www.cuba-platform.ru/support/topic/выпадающий-список-в-table
Original issue: https://youtrack.haulmont.com/issue/PL-9407