I think we should disable outline on Grid class. If it's fine, I will submit a pull request.

@nhducit Outline is an important usability mechanism for keyboard-only users. As such, I want it to be enabled by default for focusable elements.
You're free to disable it yourself via a custom className or inline style (eg style={{ outline: 'none' }}). react-virtualized supports both. :)
@bvaughn It's OK. Thanks a lot ^^
No problem. 馃槃
You aren't the first one to ask this! I just think it's important that react-virtualized be as accessibility-friendly as possible by default. People can choose to disable accessibility features (like outline) if they think it's appropriate to their applicate. 馃榿
Is there a way to disable a MultiGrid's child Grid's outline?
Never mind. Fixed by setting styleBottomRightGrid
Most helpful comment
@nhducit Outline is an important usability mechanism for keyboard-only users. As such, I want it to be enabled by default for focusable elements.
You're free to disable it yourself via a custom
classNameor inline style (egstyle={{ outline: 'none' }}). react-virtualized supports both. :)