如何在屏幕顶部显示 extjs 中的 toast?

How to show toast in extjs at the top of the screen?

默认情况下 Ext.toast 在屏幕底部显示消息。但是,这不是很实用,因为显示虚拟键盘时 toast 可能不可见。

如何Ext.toast配置为在屏幕顶部弹出?

您可以使用对齐 属性:

Ext.toast({
    message: "Hallo Welt!",
    alignment: 'tc-tc',
    timeout: 2000
});

描述了对齐值 here