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
I noticed a strange behavior when touching the same grid in iOS 15 and iOS 16.
It only happens when the page is displayed and a cell is selected for the first time.
When scrolling through the grid and selecting a cell, the cell at the top of the grid is selected.
I checked the event behavior on the above page, and it appears that the selected_cell event is being executed twice.
(When the 14th row is selected, the event is running as follows)
Thank you for reporting the issue.
I don't have iOS so it's hard to reproduce. If you have identified the cause of the bug, please consider opening a PR.
I noticed a strange behavior when touching the same grid in iOS 15 and iOS 16.
It only happens when the page is displayed and a cell is selected for the first time.
When scrolling through the grid and selecting a cell, the cell at the top of the grid is selected.
https://future-architect.github.io/cheetah-grid/documents/api/js/events.html
I checked the event behavior on the above page, and it appears that the selected_cell event is being executed twice.
(When the 14th row is selected, the event is running as follows)
Event: selected_cell , args ({"col":0,"row":0,"selected":false,"after":{"col":0,"row":14}}, false)
Event: selected_cell , args ({"col":0,"row":14,"selected":true,"before":{"col":0,"row":0}}, true)
Event: scroll , args ({"event":{"isTrusted":true}})
Event: mousedown_cell , args ({"col":0,"row":3,"event":{"isTrusted":true}})
Event: selected_cell , args ({"col":0,"row":14,"selected":false,"after":{"col":0,"row":3}}, false)
Event: selected_cell , args ({"col":0,"row":3,"selected":true,"before":{"col":0,"row":14}}, true)
Event: mouseup_cell , args ({"col":0,"row":3,"event":{"isTrusted":true}})
Event: changed_value , args ({"col":0,"row":3,"record":{"personid":3,"fname":"Allison","lname":"Myers","email":"[email protected]","birthday":"2002-07-23T15:00:00.000Z","check":true},"field":"check","value":true})
Event: click_cell , args ({"col":0,"row":3,"event":{"isTrusted":true}})
The text was updated successfully, but these errors were encountered: