-
12 Aug 2012 11:11 PM #71Ext JS Premium Member
- Join Date
- Jan 2010
- Location
- Rotterdam, The Netherlands
- Posts
- 383
- Vote Rating
- 9
Hi Erik, thanks for your effort. So, I only need to download this to have your improvements?
http://www.eirik.net/Ext/ux/window/Notification.js
-
13 Aug 2012 12:07 PM #72
That is correct. The new 2.1 version should be backwards compatible with the previous 2.0 version. Just replace the Notification.js file with the one in the link and the changes will take effect.
-
17 Aug 2012 4:03 AM #73
-
30 Aug 2012 11:04 PM #74
2.0
2.0
Hi, great extension

can I download from somewhere v2.0 I am trying to implement in one ExtJS 4.0.7 project and 2.1 is not working for me.
10x
-
31 Aug 2012 4:58 PM #75
Same request as dunamis :-). Please, can you provide dload link for version 2.0. This will be of great help for me, tnx.
-
2 Sep 2012 5:03 AM #76
-
4 Oct 2012 11:22 AM #77
Erik,
What is the license for this extension ? It says in the header that it's dual licensed under MIT and GPL, the GPL is a problem for us, MIT is OK.
Can we use this extension in a commercial application ?
Thanks for the great work,
Barry
-
12 Oct 2012 5:23 AM #78
I too was having troubles making it work on 4.0.7. I've found a copy of version 2.0 after searching a bit, and works great
http://git.php.net/?p=web/doc-editor...682ec46c3d75ef
-
15 Oct 2012 6:59 AM #79
Don't show immediately?
Don't show immediately?
I wanted to use the plugin to show notifications for reminders.
Turns out that, the moment you create an instance, the popup is shown.
Isn't it possible to create an instance, assign it to a variable, and then call the show()-method using a setTimeout?
I also tried putting the generation of the instance in the setTimeout-function, but that doesn't help, the panel is shown immediately.
Code:var me = this, msTillReminder = 30000, type= 'xxx', queueid=1, recordid=1; eval('setTimeout(function () { var rem_' + type + '_' + queueid + '_' + recordid + ' =' + 'Ext.create("Ext.ux.Notification", {' + 'title: "Reminder",' + 'position: "br",' + 'manager: me.id,' + 'stickWhileHover: true,' + 'cls: "ux-notification-light",' + 'iconCls: "ux-notification-icon-reminder",' + 'autoCloseDelay: 6000,' + 'spacing: 20,' + 'slideInDuration: 800,' + 'slideBackDuration: 1500,' + 'slideInAnimation: "bounceOut",' + 'slideBackAnimation: "easeIn",' + 'html: "my text"' + '}).show() }, ' + msTillReminder + ')');
-
15 Oct 2012 11:38 PM #80
Apparently, this is caused by a browser bug (?).
In my case, the interval used in the setTimeout-function was quite large; 6621707120
I found out that there was a (firefox-)bug posted that calls with a very large timeout would be called prematurely.
So it seems I'll have to limit the time-interval...


Reply With Quote