Major changes to the Rico 3 server control for SimpleGrids - much improved control...
[infodrom/rico3] / minsrc / ricoGridCommon.js
index c640932..ced18d0 100644 (file)
@@ -29,10 +29,10 @@ Rico.GridCommon = {
       click            : null,
       dblclick         : null,
       contextmenu      : null,
-      menuEvent        : 'dblclick',  // event that triggers menus - click, dblclick, contextmenu, or none (no menus)
-      defaultWidth     : -1,          // if -1, then use unformatted column width
-      scrollBarWidth   : 19,          // this is the value used in positioning calculations, it does not actually change the width of the scrollbar
-      minScrollWidth   : 100,         // min scroll area width when width of frozen columns exceeds window width
+      menuEvent        : null,      // event that triggers menus - click, dblclick, contextmenu, or none (no menus)
+      defaultWidth     : -1,        // if -1, then use unformatted column width
+      scrollBarWidth   : 19,        // this is the value used in positioning calculations, it does not actually change the width of the scrollbar
+      minScrollWidth   : 100,       // min scroll area width when width of frozen columns exceeds window width
       frozenColumns    : 0,
       exportWindow     : "height=400,width=500,scrollbars=1,menubar=1,resizable=1,location=0,toolbar=0,status=0",
       exportStyleList  : ['background-color','color','text-align','font-weight','font-size','font-family'],
@@ -212,7 +212,7 @@ Rico.GridCommon = {
  */
   createDivs: function() {
     Rico.log("createDivs start");
-    this.outerDiv   = this.createDiv("outer");
+    this.outerDiv = this.createDiv("outer");
     if (Rico.theme.gridContainer) Rico.addClass(this.outerDiv,Rico.theme.gridContainer);
     if (this.outerDiv.firstChild && this.outerDiv.firstChild.tagName && this.outerDiv.firstChild.tagName.toUpperCase()=='TABLE') {
       this.structTab=this.outerDiv.firstChild;