Fix #5791 - Search Criteria on Orders / Columns on orders
[roojs1] / Roo / menu / Menu.js
index 1848cc2..8bdf510 100644 (file)
@@ -19,7 +19,9 @@
  * @param {Object} config Configuration options
  */
 Roo.menu.Menu = function(config){
-    Roo.apply(this, config);
+    
+    Roo.menu.Menu.superclass.constructor.call(this, config);
+    
     this.id = this.id || Roo.id();
     this.addEvents({
         /**
@@ -148,6 +150,8 @@ Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
         //disabling touch- as it's causing issues ..
         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
+        ul.on('click'   , this.onClick, this);
+        
         
         ul.on("mouseover", this.onMouseOver, this);
         ul.on("mouseout", this.onMouseOut, this);