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
Although the grid editor panel opens fine in the tests, it seems that is only the case because the tests aren't actually setting field components for the editor. If you actually set a component via:
Then the editor component opens in the wrong location on the first attempt, usually covering the row. See attached screenshot for what happens when opening the top row of a grid with editor components set.
Edit: Subsequent attempts seem to open correctly, for some reason it's only the first attempt that opens in the wrong location.
The text was updated successfully, but these errors were encountered:
Although the grid editor panel opens fine in the tests, it seems that is only the case because the tests aren't actually setting field components for the editor. If you actually set a component via:
grid.addColumn(Person::getName) .setCaption("Name 1") .setEditorComponent(new TextField(),Person::setName) ;
Then the editor component opens in the wrong location on the first attempt, usually covering the row. See attached screenshot for what happens when opening the top row of a grid with editor components set.
Edit: Subsequent attempts seem to open correctly, for some reason it's only the first attempt that opens in the wrong location.
The text was updated successfully, but these errors were encountered: