I'm trying to add onShow and onClose observers in window constructions
function:

create: function(id,newID) {
       return new Window(id, {
           className: 'dialog',
           width: 600,
           height: 300,
           minWidth: 220,
           minHeight: 100,

           onShow: function() {
               alert('a');
           },
           onClose: function() {
               alert('b');
           }
       });
   },

but it doesn't work. Where is the problem?
_______________________________________________
Javawin mailing list
[email protected]
http://mail.xilinus.com/mailman/listinfo/javawin_xilinus.com

Reply via email to