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
WPF grid with scroll has caching system is controlled by VirtualizingStackPanel.IsVirtualizing property
If it is set to true, "Get all data from grid" and "Get grid rows count" deliver only the visiable items and count of visible items.
WPF grid with scroll has caching system is controlled by VirtualizingStackPanel.IsVirtualizing property
If it is set to true, "Get all data from grid" and "Get grid rows count" deliver only the visiable items and count of visible items.
get grid rows count can be easily fixed by changing
Rows.Length to RowCount in
https://github.com/GDATASoftwareAG/robotframework-flaui/blob/main/src/FlaUILibrary/flaui/module/grid.py#L87C56-L87C78
similar issue: https://stackoverflow.com/questions/25084114/how-to-get-all-rows-from-a-wpf-datagrid-with-scroll
The text was updated successfully, but these errors were encountered: