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
Post a Comment