React-toolbox: How to add scrollbar in a dialog box?

Created on 28 Apr 2017  路  3Comments  路  Source: react-toolbox/react-toolbox

My data is very large for dialog box and I want to add scroolbar for that

Most helpful comment

For a workaround I did via css

div[data-react-toolbox=dialog] > section{
overflow: auto;
}

All 3 comments

This is a CSS problem, overflow-wrapper has all the styles you'll need:

https://codepen.io/patrickflanagan/pen/RVgJZM

How do I add this into my react code? I am also facing the same issue

For a workaround I did via css

div[data-react-toolbox=dialog] > section{
overflow: auto;
}

Was this page helpful?
0 / 5 - 0 ratings

Related issues

fraenku picture fraenku  路  3Comments

Klathmon picture Klathmon  路  3Comments

wtgtybhertgeghgtwtg picture wtgtybhertgeghgtwtg  路  3Comments

thomasthiebaud picture thomasthiebaud  路  4Comments

kodermax picture kodermax  路  4Comments