javascript - Treepanel with scrollbar in ExtJS 6 -


it seems extjs 6 looks , fast, because there still myriads of bugs. example, cannot add vertical scrollbar treepanel. result when there many nodes, i'm unable scroll through of them. tried:

{     xtype: "treepanel",     scrollable: true, // <-- not work!     autoscroll: true, // <-- not work!     .... 

i wonder why such primitive things stopped working in modern extjs. hope there magic mantra can fix it.

it depends on container's layout config. try this:

{     xtype: 'panel',     layout: 'fit',     items: [{         xtype: "treepanel",         scrollable: true     }] } 

Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -