Added 3grids asp & .net examples. ricoQuery.aspx removed, as all AJAX queries in...
[infodrom/rico3] / ricoClient / js / rico2doj.js
index 5853a81..61a47a5 100644 (file)
@@ -42,7 +42,16 @@ Rico.eventElement=function(ev) {
   return ev.target;
 };
 
-Rico.eventStop=dojo.stopEvent;
+// the Dojo native function has problems on IE
+Rico.eventStop=function(ev) {
+  if (window.attachEvent) {
+    window.event.returnValue = false;
+    window.event.cancelBubble = true;
+  } else {
+    ev.preventDefault();
+    ev.stopPropagation();
+  }
+};
 
 Rico.eventClient=function(ev) {
   return {x:ev.pageX, y:ev.pageY};