Eldar Iosip
Eldar Iosip
You can use standard Sencha select function on underlying menu list: ``` javascript Ext.getCmp('your-list').select(1) ``` It selects the second item in menu list. As alternative to Ext.getCmp you can use...
You can select an extended component by it's xtype in controller refs and then call: ``` javascript this.getXtypeDefinedInControllerRefs().toggleContainer(); ``` It could be called from function which is a callback to...
I had the same issue on Debian 11 today on Alibaba Cloud instance. I added following lines to `/etc/default/grub` under GRUB_CMDLINE_LINUX variable ``` cgroup_memory=1 cgroup_enable=memory ``` and rebooted the instance...