Issue
I have recently start working on flask. Flask admin is similar version of django admin as they say.
My question is can we stretch out table width to remove horizontal scrolling. Also it could help to see data in first glance.
Please ignore poor editing. Is it possible to use red area shown in image for table view.
Thanks.
Solution
Got it. There's FLASK_ADMIN_FLUID_LAYOUT config which need to set True. And it enables full fluid layout
app.name = 'App Name'
app.config['FLASK_ADMIN_FLUID_LAYOUT'] = True
Use above lines to set or unset FLUID_LAYOUT
Answered By - Ajay Phape
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.