我正在使用dojox / widget / Toaster来显示烤面包机消息, 我已宣布为,
<div data-dojo-type="dojox/widget/Toaster" id="toast2"
data-dojo-props='positionDirection:"br-up", messageTopic:"/app/notif", duration:"8000"'>
</div>
我从不同地方的javascript调用,
connect.publish('/app/notif', [ "<b><font color=\"red\">"+ "Toaster Message" +". </font></b>" ]);
但我能看到烤面包机底部的最新消息,
我需要它在顶部,你能建议怎么做。
答案 0 :(得分:0)
尝试将tr-down
代替br-up
用于属性positionDirection
。
消息滑入屏幕的positionDirection
选项为:
[&#34; br-up&#34;,&#34; br-left&#34;,&#34; bl-up&#34;,&#34; bl-right&#34;,&# 34; tr-down&#34;,&#34; tr-left&#34;,&#34; tl-down&#34;,&#34; tl-right&#34;]
如果您的问题仍然存在,请考虑禁用Toaster上的任何自定义CSS(如果有),以便调试porpoises。
Toaster的API文档: