Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ListGrid record click in google chrome, main layout scroll bar scroll to select row

    Only in google chrome, if there is an outer scroll bar of grid and on clicking the record in the grid the outer scroll bar scroll to down. This happen only first time click.

    Use case: open the online showcase with any grid example in google chrome and resize the chrome browser window till there is an outer scroll bar of the grid. Now click the visible record ( don't do any scrolling just click any record), automatically the outer scroll bar jumps down and it happen only once.

    My use case: is I have a page where the grid is drawn with records and the main layout has scroll bar to make sure only single scroll bar appears. I tried with all cancelling the mouse down handler, still the parent scroll bar jumps down only in first time.
    Attached Files

    #2
    I'm not sure, that this issue is totally clear for me, but did you try to switch-off an ability to have focus for your grid? Something like this:
    Code:
    listGrid.setCanFocus(false);

    Comment

    Working...
    X