如何在zk框架中更改o通知的大小?

时间:2014-06-12 11:46:29

标签: zk

如何在zk框架中更改通知的大小(宽度,高度)?

Clients.showNotification(); 

谢谢。

1 个答案:

答案 0 :(得分:1)

我担心有没有(内置)方式。我刚检查了ZK来源,它基本上归结为:

public AuNotification(String msg, String type, Page page, Component ref, 
        String position, int duration, boolean closable) {
    super("showNotification", new Object[] { 
            msg, type, page.getUuid(), ref, position, null, duration, closable });
}

因此告知客户端引擎显示通知,不涉及任何大小。