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

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -