-
29 Jul 2009 6:01 AM #81
silly me thanks for the hint will report to correct owner


-
29 Jul 2009 11:04 PM #82
Some problems using at FF
Some problems using at FF
hi,
when i used at FF with Notification window,FF showed errors like these:
1)
Components is not defined
if(this.fireEvent("beforeload", this, options) !== false){
2)this.fireEvent is not a function
if(this.fireEvent("beforeload", this, options) !== false){
thank you for you help!
Ming
-
30 Jul 2009 2:05 AM #83
Have you in your page the include line look like this?
Can you post a segment of code where you use the Notification Ux?Code:<script language="JavaScript" src="/(path wher is place the Ux)/Ext.ux.Notification.js"></script>
when I use it I follow this way:
Code://simpli Notify var notify = new Ext.ux.Notification({ title: "My title", html: "Notify Message", autoDestroy: true, hideDelay: 1500 }); notify.show( document ); // notify with sound effect var notify = new Ext.ux.Notification({ title: "My title", html: "Notify Message", autoDestroy: true, hideDelay: 5000 listeners: { 'beforerender': function(){ Sound.enable(); Sound.play('/sounds/notify.wav'); Sound.disable(); } } }); notify.show(document);
-
30 Jul 2009 5:26 AM #84
The Noitification window stay open for 1500 ms ( a,5 seconds), but the shadow persist (I hate it
)
santhosh_chennai, I try this Example Page
http://www.efattal.fr/extjs/examples/toastwindow/
in my browsers, and all works fine, but this page use Extjs 2.2, in my application ( Extjs 3.0.0 ) I have the permanent shadow....
other ideas?
-
30 Jul 2009 7:18 AM #85
[SOLVED]
I've do a svn checkout, buil Extjs and put it in my application..
Everything works Fine, and the damned shadow is vanished.


-
11 Sep 2009 4:14 AM #86
Notifications misplaced when resizing windows
Notifications misplaced when resizing windows
Hello,
nice plugin, but when resizing browser window, the notifications remain in their old position.
Best regards, Stefan
-
15 Dec 2009 12:45 PM #87
@dizzyd: i am using firefox3.5.5 and ext-3.0.3 and still having the shadow.
does anybody know, why the div containing the shadow does not get moved by ghost or slideOut?
kind regards,
tobiu
-
5 Jan 2010 5:29 PM #88
If you are still usingToastWindow instead of the new component, you can use this override. It hides the shadow before the animation starts which seems to be necessary since the shadow and the window do not share the same animated container (i.e. the window el is animated, which does not hold the shadow).
I do not remember the behavior in Ext 2.2 and do not know if Ext 2.2 automatically did hide the shadow before the animation started - however, this makes for a better effect than the shadow remaining until the window's destroy method gets called
Code:animHide: function(){ Ext.ux.ToastWindowMgr.positions.remove(this.pos); this.el.disableShadow(); this.el.ghost("b", { duration: 1, remove: true, scope: this, callback: this.destroy }); }
-
7 Jan 2010 7:27 AM #89
anyone have a fix for notification and the shadow for 3.x. I thought I had it nailed but it still has issues.
EDIT - DOH - that fix works for notification also!
Nice work!
-
13 Feb 2010 2:07 AM #90
Using the latest revision (3.1.1) this component suffers the same problem with shadow! Someone probably can fill in a bugreport..


Reply With Quote
when you got it solved kindly let me know what was the actual problem in toast window