You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for very cool component 👍 ! But there is small bug if you use this component in the HeaderRow of the standard Vaadin Grid.
There is a Kotlin example : val headerRow = Grid.appendHeaderRow() headerRow.getCell(column).component = LookupField().apply { comboBox.isClearButtonVisible = true grid = UsersGrid() }
this code works not well : If you click to open the search dialog button you will see just empty Grid with no any columns or settings. It bug reproduced only in headerRow of grid .
Workaround : just setup Grid in the constructor : LookupField<Users>(UsersGrid(), ComboBox()) instead of LookupField.setGrid(Grid<T> grid)
The text was updated successfully, but these errors were encountered:
Thank you for very cool component 👍 ! But there is small bug if you use this component in the HeaderRow of the standard Vaadin Grid.
There is a Kotlin example :
val headerRow = Grid.appendHeaderRow() headerRow.getCell(column).component = LookupField().apply { comboBox.isClearButtonVisible = true grid = UsersGrid() }
LookupField<Users>(UsersGrid(), ComboBox())
instead ofLookupField.setGrid(Grid<T> grid)
The text was updated successfully, but these errors were encountered: