resources/Editors/Editor.Roo.grid.Grid.bjs
authorAlan Knowles <alan@roojs.com>
Fri, 24 Apr 2015 08:29:32 +0000 (16:29 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 24 Apr 2015 08:29:32 +0000 (16:29 +0800)
resources/Editors/Editor.Roo.grid.Grid.js
resources/Editors/Editor.Roo.grid.GridPanel.bjs
resources/Editors/Editor.Roo.grid.GridPanel.js

12 files changed:
configure.ac
resources/Editors/Editor.Roo.grid.Grid.bjs [deleted file]
resources/Editors/Editor.Roo.grid.Grid.js [deleted file]
resources/Editors/Editor.Roo.grid.GridPanel.bjs [deleted file]
resources/Editors/Editor.Roo.grid.GridPanel.js [deleted file]
src/Builder4/DialogTemplateSelect.bjs
src/Builder4/DialogTemplateSelect.vala
src/Builder4/WindowState.vala
src/JsRender/Node.vala
src/Makefile.am
src/Palete/RooDatabase.vala
src/Project/Project.vala

index e78a9c2..a702aa8 100644 (file)
@@ -69,7 +69,8 @@ else
        
 
 fi
        
 
 fi
- AM_CONDITIONAL(HAVE_GDA4, test "$gda_4_0_enabled" = "yes")
+AM_CONDITIONAL(HAVE_GDA4, test "$gda_4_0_enabled" = "yes")
+AM_CONDITIONAL(HAVE_GDA5, test "$gda_5_0_enabled" = "yes")
 
 
 
 
 
 
diff --git a/resources/Editors/Editor.Roo.grid.Grid.bjs b/resources/Editors/Editor.Roo.grid.Grid.bjs
deleted file mode 100644 (file)
index 4bceca7..0000000
+++ /dev/null
@@ -1,147 +0,0 @@
-{
- "name" : "Editor.Roo.grid.Grid",
- "parent" : "",
- "title" : "",
- "path" : "/home/alan/gitlive/app.Builder.js/resources/Editors/Editor.Roo.grid.Grid.bjs",
- "permname" : "",
- "modOrder" : "001",
- "strings" : {
-  "4ce58cbe362a5d7b156992a496d55bf3" : "Database Column",
-  "b78a3223503896721cca1303f776159b" : "Title",
-  "2f616612593df62aeed112de4f03110e" : "Edit a Grid",
-  "0ccc2bf3fb98387c23b6ca5500244d6e" : "Use ",
-  "c671c787b49f50a3ace9fdc5bd597825" : "core_enum",
-  "32954654ac8fe66a1d09be19001de2d4" : "Width",
-  "a1fa27779242b4902f7ae3bdd5c6d508" : "Type",
-  "6e7376dca68a2386a8737944196ab491" : "Create / Edit Grid"
- },
- "items" : [
-  {
-   "listeners" : {
-    "|activate" : "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
-   },
-   "| function loadData" : "function(data) { \n\n     alert(\"IPC:TEST:\" + JSON.stringify(data,null,4));\n    var ar = [];\n    for (var k in data) { \n        var r = data[k];\n        var has_s = typeof(r.relates_to_schema) != 'undefined'\n        ar.push([ !has_s , r.Field, r.Type,  r.Field, 100] );\n        if (!has_s) {\n            continue;\n        }\n        for (var kk in r.relates_to_schema) {         \n            var rr = r.relates_to_schema[kk];\n            if (rr.Field == r.relates_to_col) {\n                continue;\n            }\n            ar.push([ false, r.Field + '_'+ rr.Field, rr.Type,  rr.Field, 100] );\n        }\n    }\n    \n    alert(\"IPC:TEST:\" + JSON.stringify(ar));\n    this.grid.dataSource.loadData(ar);\n}",
-   "| function toBJS" : "function() { \n\n// convert the selected cells into a BJS data ready to send back to the UI..\n   \n    this.table = \"XXX\";\n    this.firstTxtCol = \"XXX\";\n   \n    \n    var jreader = {};\n    var     colmodel = [];\n    this.grid.dataSource.each(function(rec) {\n        if (!rec.data.active) {\n            return;\n        }\n        \n        \n        \n        colmodel.push({\n            \"xtype\": \"ColumnModel\",\n            \"header\": rec.data.title,\n            \"width\":  rec.data.width * 1,\n            \"dataIndex\": rec.data.dataIndex,\n            \"|renderer\": !rec.data.type.match(/date/i) ? \n                    \"function(v) { return String.format('{0}', v); }\" :\n                    \"function(v) { return String.format('{0}', v ? v.format('d/M/Y') : ''); }\" , // special for date\n            \"|xns\": \"Roo.grid\",\n            \"*prop\": \"colModel[]\"\n        });\n    });\n    \n    \n    \n\n    alert(\"IPC:OUT:\" + JSON.stringify({\n        '|xns' : 'Roo',\n        xtype : \"GridPanel\",\n        \"title\": this.table,\n        \"fitToframe\": true,\n        \"fitContainer\": true,\n        \"tableName\": this.table,\n        \"background\": true,\n        \"region\" : 'center',\n        \"listeners\": {\n            \"|activate\": \"function() {\\n    _this.panel = this;\\n    if (_this.grid) {\\n        _this.grid.footer.onClick('first');\\n    }\\n}\"\n        },\n        \"items\": [\n            {\n                \"*prop\": \"grid\",\n                \"xtype\": \"Grid\",\n                \"autoExpandColumn\": this.firstTxtCol,\n                \"loadMask\": true,\n                \"listeners\": {\n                    \"|render\": \"function() \\n\" +\n                        \"{\\n\" +\n                        \"    _this.grid = this; \\n\" +\n                        \"    //_this.dialog = Pman.Dialog.FILL_IN\\n\" +\n                        \"    if (_this.panel.active) {\\n\" +\n                        \"       this.footer.onClick('first');\\n\" +\n                        \"    }\\n\" +\n                        \"}\",\n                    \"|rowdblclick\": \"function (_self, rowIndex, e)\\n\" + \n                        \"{\\n\" + \n                        \"    if (!_this.dialog) return;\\n\" + \n                        \"    _this.dialog.show( this.getDataSource().getAt(rowIndex).data, function() {\\n\" + \n                        \"        _this.grid.footer.onClick('first');\\n\" + \n                        \"    }); \\n\" + \n                        \"}\\n\"\n                },\n                \"|xns\": \"Roo.grid\",\n\n                \"items\": [\n                    {\n                        \"*prop\": \"dataSource\",\n                        \"xtype\": \"Store\",\n                         remoteSort : true,\n                        '|sortInfo' : \"{ field : '\" + this.firstTxtCol  +  \"', direction: 'ASC' }\", \n                        \"|xns\": \"Roo.data\",\n                        \"items\": [\n                            \n                            {\n                                \"*prop\": \"proxy\",\n                                \"xtype\": \"HttpProxy\",\n                                \"method\": \"GET\",\n                                \"|url\": \"baseURL + '/Roo/\" + this.table + \".php'\",\n                                \"|xns\": \"Roo.data\"\n                            },\n                            {\n                                '*prop' : 'reader',\n                                'xtype' : 'JsonReader',\n                                '|xns' : 'Roo.data',\n                                'id' : 'id',\n                                'root' : 'data',\n                                'totalProperty' : 'total'\n                            }\n                        ]\n                    },\n                    {\n                        \"*prop\": \"footer\",\n                        \"xtype\": \"PagingToolbar\",\n                        \"pageSize\": 25,\n                        \"displayInfo\": true,\n                        \"displayMsg\": \"Displaying \" + this.table + \"{0} - {1} of {2}\",\n                        \"emptyMsg\": \"No \" + this.table + \" found\",\n                        \"|xns\": \"Roo\"\n                    },\n                    {\n                        \"*prop\": \"toolbar\",\n                        \"xtype\": \"Toolbar\",\n                        \"|xns\": \"Roo\",\n                        \"items\": [\n                            {\n                                \"text\": \"Add\",\n                                \"xtype\": \"Button\",\n                                \"cls\": \"x-btn-text-icon\",\n                                \"|icon\": \"Roo.rootURL + 'images/default/dd/drop-add.gif'\",\n                                \"listeners\": {\n                                    \"|click\": \"function()\\n\"+\n                                        \"{\\n\"+\n                                        \"    if (!_this.dialog) return;\\n\" +\n                                        \"    _this.dialog.show( { id : 0 } , function() {\\n\"+\n                                        \"        _this.grid.footer.onClick('first');\\n\"+\n                                        \"   }); \\n\"+\n                                        \"}\\n\"\n                                },\n                                \"|xns\": \"Roo.Toolbar\"\n                            },\n                             // fill ????\n                            {\n                                \"text\": \"Delete\",\n                                \"cls\": \"x-btn-text-icon\",\n                                \"|icon\": \"rootURL + '/Pman/templates/images/trash.gif'\",\n                                \"xtype\": \"Button\",\n                                \"listeners\": {\n                                    \"|click\": \"function()\\n\"+\n                                        \"{\\n\"+\n                                        \"     Pman.genericDelete(_this, '\" + this.table + \"'); \\n\"+\n                                        \"}\\n\"+\n                                        \"        \"\n                                },\n                                \"|xns\": \"Roo.Toolbar\"\n                            }\n                        ]\n                    }, // end toolbar\n                ].concat( colmodel)\n            }\n        ]\n        \n        \n    }, null, 4));\n\n}",
-   "fitToframe" : true,
-   "background" : false,
-   "region" : "center",
-   "title" : "core_enum",
-   "xtype" : "GridPanel",
-   "$ xns" : "Roo",
-   "fitContainer" : true,
-   "String title" : "Create / Edit Grid",
-   "tableName" : "core_enum",
-   "items" : [
-    {
-     "listeners" : {
-      "|rowdblclick" : "function (_self, rowIndex, e)\n{\n    if (!_this.dialog) return;\n  \n}\n",
-      "|render" : "function() \n{\n    _this.grid = this; \n    //_this.dialog = Pman.Dialog.FILL_IN\n\n}",
-      "cellclick" : "function (_self, rowIndex, columnIndex, e)\n{\n\n        var di = this.colModel.getDataIndex(columnIndex);\n        if (di != 'active') {\n            return;\n        }\n         \n        var rec = _this.grid.ds.getAt(rowIndex);\n        \n        rec.set('active', rec.data.active * 1 ? 0 : 1);\n        rec.commit();\n         \n        \n}"
-     },
-     "Number clicksToEdit" : 1,
-     "autoExpandColumn" : "title",
-     "xtype" : "EditorGrid",
-     "loadMask" : true,
-     "$ xns" : "Roo.grid",
-     "* prop" : "grid",
-     "items" : [
-      {
-       "$ Array fields" : "[ 'active', 'dataIndex', 'type','title', 'width' ]",
-       "$ Array data" : "[\n  [ 1, 'test', 'test', 110 ]\n  \n\n]",
-       "Number id" : "'dataIndex'",
-       "xtype" : "SimpleStore",
-       "$ xns" : "Roo.data",
-       "* prop" : "ds"
-      },
-      {
-       "xtype" : "Toolbar",
-       "$ xns" : "Roo",
-       "* prop" : "toolbar",
-       "items" : [
-        {
-         "string text" : "Edit a Grid",
-         "xtype" : "TextItem",
-         "$ xns" : "Roo.Toolbar"
-        }
-       ]
-      },
-      {
-       "xtype" : "ColumnModel",
-       "width" : 75,
-       "header" : "Use ",
-       "$ renderer" : "function(v) {  \n    var state = v *1 > 0 ?  '-checked' : '';\n\n    return '<img class=\"x-grid-check-icon' + state + '\" src=\"' + Roo.BLANK_IMAGE_URL + '\"/>';\n                \n }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "active"
-      },
-      {
-       "xtype" : "ColumnModel",
-       "header" : "Database Column",
-       "width" : 150,
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "dataIndex"
-      },
-      {
-       "xtype" : "ColumnModel",
-       "width" : 100,
-       "header" : "Type",
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "type"
-      },
-      {
-       "xtype" : "ColumnModel",
-       "header" : "Title",
-       "width" : 75,
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "title",
-       "items" : [
-        {
-         "xtype" : "GridEditor",
-         "$ xns" : "Roo.grid",
-         "* prop" : "editor",
-         "items" : [
-          {
-           "xtype" : "TextField",
-           "$ xns" : "Roo.form",
-           "* prop" : "field"
-          }
-         ]
-        }
-       ]
-      },
-      {
-       "xtype" : "ColumnModel",
-       "width" : 75,
-       "header" : "Width",
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "width",
-       "items" : [
-        {
-         "xtype" : "GridEditor",
-         "$ xns" : "Roo.grid",
-         "* prop" : "editor",
-         "items" : [
-          {
-           "xtype" : "NumberField",
-           "Number decimalPrecision" : 0,
-           "$ xns" : "Roo.form",
-           "* prop" : "field"
-          }
-         ]
-        }
-       ]
-      }
-     ]
-    }
-   ]
-  }
- ]
-}
\ No newline at end of file
diff --git a/resources/Editors/Editor.Roo.grid.Grid.js b/resources/Editors/Editor.Roo.grid.Grid.js
deleted file mode 100644 (file)
index 6ca394d..0000000
+++ /dev/null
@@ -1,384 +0,0 @@
-//<script type="text/javascript">
-
-// Auto generated file - created by app.Builder.js- do not edit directly (at present!)
-
-Roo.namespace('Editor.Roo.grid');
-
-Editor.Roo.grid.Grid = new Roo.XComponent({
-
- _strings : {
-  '4ce58cbe362a5d7b156992a496d55bf3' :"Database Column",
-  'b78a3223503896721cca1303f776159b' :"Title",
-  '2f616612593df62aeed112de4f03110e' :"Edit a Grid",
-  '0ccc2bf3fb98387c23b6ca5500244d6e' :"Use ",
-  'c671c787b49f50a3ace9fdc5bd597825' :"core_enum",
-  '32954654ac8fe66a1d09be19001de2d4' :"Width",
-  'a1fa27779242b4902f7ae3bdd5c6d508' :"Type",
-  '6e7376dca68a2386a8737944196ab491' :"Create / Edit Grid"
- },
-
-  part     :  ["Editors", "Grid" ],
-  order    : '001-Editor.Roo.grid.Grid',
-  region   : 'center',
-  parent   : false,
-  name     : "unnamed module",
-  disabled : false, 
-  permname : '', 
-  _tree : function()
-  {
-   var _this = this;
-   var MODULE = this;
-   return {
-   grid : {
-    ds : {
-     '|xns' : 'Roo.data',
-     data : [
-       [ 1, 'test', 'test', 110 ]
-       
-     
-     ],
-     fields : [ 'active', 'dataIndex', 'type','title', 'width' ],
-     id : 'dataindex',
-     xns : Roo.data,
-     xtype : 'SimpleStore'
-    },
-    toolbar : {
-     '|xns' : 'Roo',
-     xns : Roo,
-     xtype : 'Toolbar',
-     items : [
-      {
-       '|xns' : 'Roo.Toolbar',
-       text : _this._strings['2f616612593df62aeed112de4f03110e'],
-       xns : Roo.Toolbar,
-       xtype : 'TextItem'
-      }
-     ]
-
-    },
-    '|xns' : 'Roo.grid',
-    autoExpandColumn : 'title',
-    clicksToEdit : 1,
-    loadMask : true,
-    xns : Roo.grid,
-    xtype : 'EditorGrid',
-    cm : [
-      {
-       '|xns' : 'Roo.grid',
-       dataIndex : 'active',
-       header : _this._strings['0ccc2bf3fb98387c23b6ca5500244d6e'],
-       renderer : function(v) {  
-           var state = v *1 > 0 ?  '-checked' : '';
-       
-           return '<img class="x-grid-check-icon' + state + '" src="' + Roo.BLANK_IMAGE_URL + '"/>';
-                       
-        },
-       width : 75,
-       xns : Roo.grid,
-       xtype : 'ColumnModel'
-      },
-{
-       '|xns' : 'Roo.grid',
-       dataIndex : 'dataIndex',
-       header : _this._strings['4ce58cbe362a5d7b156992a496d55bf3'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 150,
-       xns : Roo.grid,
-       xtype : 'ColumnModel'
-      },
-{
-       '|xns' : 'Roo.grid',
-       dataIndex : 'type',
-       header : _this._strings['a1fa27779242b4902f7ae3bdd5c6d508'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 100,
-       xns : Roo.grid,
-       xtype : 'ColumnModel'
-      },
-{
-       editor : {
-        field : {
-         '|xns' : 'Roo.form',
-         xns : Roo.form,
-         xtype : 'TextField'
-        },
-        '|xns' : 'Roo.grid',
-        xns : Roo.grid,
-        xtype : 'GridEditor',
-        items : [
-
-        ]
-
-       },
-       '|xns' : 'Roo.grid',
-       dataIndex : 'title',
-       header : _this._strings['b78a3223503896721cca1303f776159b'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 75,
-       xns : Roo.grid,
-       xtype : 'ColumnModel',
-       items : [
-
-       ]
-
-      },
-{
-       editor : {
-        field : {
-         '|xns' : 'Roo.form',
-         decimalPrecision : 0,
-         xns : Roo.form,
-         xtype : 'NumberField'
-        },
-        '|xns' : 'Roo.grid',
-        xns : Roo.grid,
-        xtype : 'GridEditor',
-        items : [
-
-        ]
-
-       },
-       '|xns' : 'Roo.grid',
-       dataIndex : 'width',
-       header : _this._strings['32954654ac8fe66a1d09be19001de2d4'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 75,
-       xns : Roo.grid,
-       xtype : 'ColumnModel',
-       items : [
-
-       ]
-
-      }
-    ],
-    listeners : {
-     cellclick : function (_self, rowIndex, columnIndex, e)
-      {
-      
-              var di = this.colModel.getDataIndex(columnIndex);
-              if (di != 'active') {
-                  return;
-              }
-               
-              var rec = _this.grid.ds.getAt(rowIndex);
-              
-              rec.set('active', rec.data.active * 1 ? 0 : 1);
-              rec.commit();
-               
-              
-      },
-     render : function() 
-      {
-          _this.grid = this; 
-          //_this.dialog = Pman.Dialog.FILL_IN
-      
-      },
-     rowdblclick : function (_self, rowIndex, e)
-      {
-          if (!_this.dialog) return;
-        
-      }
-    },
-    items : [
-
-    ]
-
-   },
-   '|xns' : 'Roo',
-   background : false,
-   fitContainer : true,
-   fitToframe : true,
-   loadData : function(data) { 
-   
-        alert("IPC:TEST:" + JSON.stringify(data,null,4));
-       var ar = [];
-       for (var k in data) { 
-           var r = data[k];
-           var has_s = typeof(r.relates_to_schema) != 'undefined'
-           ar.push([ !has_s , r.Field, r.Type,  r.Field, 100] );
-           if (!has_s) {
-               continue;
-           }
-           for (var kk in r.relates_to_schema) {         
-               var rr = r.relates_to_schema[kk];
-               if (rr.Field == r.relates_to_col) {
-                   continue;
-               }
-               ar.push([ false, r.Field + '_'+ rr.Field, rr.Type,  rr.Field, 100] );
-           }
-       }
-       
-       alert("IPC:TEST:" + JSON.stringify(ar));
-       this.grid.dataSource.loadData(ar);
-   },
-   region : 'center',
-   tableName : 'core_enum',
-   title : _this._strings['c671c787b49f50a3ace9fdc5bd597825'],
-   title : _this._strings['c671c787b49f50a3ace9fdc5bd597825'],
-   toBJS : function() { 
-   
-   // convert the selected cells into a BJS data ready to send back to the UI..
-      
-       this.table = "XXX";
-       this.firstTxtCol = "XXX";
-      
-       
-       var jreader = {};
-       var     colmodel = [];
-       this.grid.dataSource.each(function(rec) {
-           if (!rec.data.active) {
-               return;
-           }
-           
-           
-           
-           colmodel.push({
-               "xtype": "ColumnModel",
-               "header": rec.data.title,
-               "width":  rec.data.width * 1,
-               "dataIndex": rec.data.dataIndex,
-               "|renderer": !rec.data.type.match(/date/i) ? 
-                       "function(v) { return String.format('{0}', v); }" :
-                       "function(v) { return String.format('{0}', v ? v.format('d/M/Y') : ''); }" , // special for date
-               "|xns": "Roo.grid",
-               "*prop": "colModel[]"
-           });
-       });
-       
-       
-       
-   
-       alert("IPC:OUT:" + JSON.stringify({
-           '|xns' : 'Roo',
-           xtype : "GridPanel",
-           "title": this.table,
-           "fitToframe": true,
-           "fitContainer": true,
-           "tableName": this.table,
-           "background": true,
-           "region" : 'center',
-           "listeners": {
-               "|activate": "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
-           },
-           "items": [
-               {
-                   "*prop": "grid",
-                   "xtype": "Grid",
-                   "autoExpandColumn": this.firstTxtCol,
-                   "loadMask": true,
-                   "listeners": {
-                       "|render": "function() \n" +
-                           "{\n" +
-                           "    _this.grid = this; \n" +
-                           "    //_this.dialog = Pman.Dialog.FILL_IN\n" +
-                           "    if (_this.panel.active) {\n" +
-                           "       this.footer.onClick('first');\n" +
-                           "    }\n" +
-                           "}",
-                       "|rowdblclick": "function (_self, rowIndex, e)\n" + 
-                           "{\n" + 
-                           "    if (!_this.dialog) return;\n" + 
-                           "    _this.dialog.show( this.getDataSource().getAt(rowIndex).data, function() {\n" + 
-                           "        _this.grid.footer.onClick('first');\n" + 
-                           "    }); \n" + 
-                           "}\n"
-                   },
-                   "|xns": "Roo.grid",
-   
-                   "items": [
-                       {
-                           "*prop": "dataSource",
-                           "xtype": "Store",
-                            remoteSort : true,
-                           '|sortInfo' : "{ field : '" + this.firstTxtCol  +  "', direction: 'ASC' }", 
-                           "|xns": "Roo.data",
-                           "items": [
-                               
-                               {
-                                   "*prop": "proxy",
-                                   "xtype": "HttpProxy",
-                                   "method": "GET",
-                                   "|url": "baseURL + '/Roo/" + this.table + ".php'",
-                                   "|xns": "Roo.data"
-                               },
-                               {
-                                   '*prop' : 'reader',
-                                   'xtype' : 'JsonReader',
-                                   '|xns' : 'Roo.data',
-                                   'id' : 'id',
-                                   'root' : 'data',
-                                   'totalProperty' : 'total'
-                               }
-                           ]
-                       },
-                       {
-                           "*prop": "footer",
-                           "xtype": "PagingToolbar",
-                           "pageSize": 25,
-                           "displayInfo": true,
-                           "displayMsg": "Displaying " + this.table + "{0} - {1} of {2}",
-                           "emptyMsg": "No " + this.table + " found",
-                           "|xns": "Roo"
-                       },
-                       {
-                           "*prop": "toolbar",
-                           "xtype": "Toolbar",
-                           "|xns": "Roo",
-                           "items": [
-                               {
-                                   "text": "Add",
-                                   "xtype": "Button",
-                                   "cls": "x-btn-text-icon",
-                                   "|icon": "Roo.rootURL + 'images/default/dd/drop-add.gif'",
-                                   "listeners": {
-                                       "|click": "function()\n"+
-                                           "{\n"+
-                                           "    if (!_this.dialog) return;\n" +
-                                           "    _this.dialog.show( { id : 0 } , function() {\n"+
-                                           "        _this.grid.footer.onClick('first');\n"+
-                                           "   }); \n"+
-                                           "}\n"
-                                   },
-                                   "|xns": "Roo.Toolbar"
-                               },
-                                // fill ????
-                               {
-                                   "text": "Delete",
-                                   "cls": "x-btn-text-icon",
-                                   "|icon": "rootURL + '/Pman/templates/images/trash.gif'",
-                                   "xtype": "Button",
-                                   "listeners": {
-                                       "|click": "function()\n"+
-                                           "{\n"+
-                                           "     Pman.genericDelete(_this, '" + this.table + "'); \n"+
-                                           "}\n"+
-                                           "        "
-                                   },
-                                   "|xns": "Roo.Toolbar"
-                               }
-                           ]
-                       }, // end toolbar
-                   ].concat( colmodel)
-               }
-           ]
-           
-           
-       }, null, 4));
-   
-   },
-   xns : Roo,
-   xtype : 'GridPanel',
-   listeners : {
-    activate : function() {
-         _this.panel = this;
-         if (_this.grid) {
-             _this.grid.footer.onClick('first');
-         }
-     }
-   },
-   items : [
-
-   ]
-
-  };  }
-});
diff --git a/resources/Editors/Editor.Roo.grid.GridPanel.bjs b/resources/Editors/Editor.Roo.grid.GridPanel.bjs
deleted file mode 100644 (file)
index 1ccbabf..0000000
+++ /dev/null
@@ -1,147 +0,0 @@
-{
- "name" : "Editor.Roo.grid.GridPanel",
- "parent" : "",
- "title" : "",
- "path" : "/home/alan/gitlive/app.Builder.js/resources/Editors/Editor.Roo.grid.GridPanel.bjs",
- "permname" : "",
- "modOrder" : "001",
- "strings" : {
-  "4ce58cbe362a5d7b156992a496d55bf3" : "Database Column",
-  "b78a3223503896721cca1303f776159b" : "Title",
-  "2f616612593df62aeed112de4f03110e" : "Edit a Grid",
-  "0ccc2bf3fb98387c23b6ca5500244d6e" : "Use ",
-  "c671c787b49f50a3ace9fdc5bd597825" : "core_enum",
-  "32954654ac8fe66a1d09be19001de2d4" : "Width",
-  "a1fa27779242b4902f7ae3bdd5c6d508" : "Type",
-  "6e7376dca68a2386a8737944196ab491" : "Create / Edit Grid"
- },
- "items" : [
-  {
-   "listeners" : {
-    "|activate" : "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
-   },
-   "| function loadData" : "function(data) { \n\n     alert(\"IPC:TEST:\" + JSON.stringify(data,null,4));\n    var ar = [];\n    for (var k in data) { \n        var r = data[k];\n        var has_s = typeof(r.relates_to_schema) != 'undefined'\n        ar.push([ !has_s , r.Field, r.Type,  r.Field, 100] );\n        if (!has_s) {\n            continue;\n        }\n        for (var kk in r.relates_to_schema) {         \n            var rr = r.relates_to_schema[kk];\n            if (rr.Field == r.relates_to_col) {\n                continue;\n            }\n            ar.push([ false, r.Field + '_'+ rr.Field, rr.Type,  rr.Field, 100] );\n        }\n    }\n    \n    alert(\"IPC:TEST:\" + JSON.stringify(ar));\n    this.grid.dataSource.loadData(ar);\n}",
-   "| function toBJS" : "function() { \n\n// convert the selected cells into a BJS data ready to send back to the UI..\n   \n    this.table = \"XXX\";\n    this.firstTxtCol = \"XXX\";\n   \n    \n    var jreader = {};\n    var     colmodel = [];\n    this.grid.dataSource.each(function(rec) {\n        if (!rec.data.active) {\n            return;\n        }\n        \n        \n        \n        colmodel.push({\n            \"xtype\": \"ColumnModel\",\n            \"header\": rec.data.title,\n            \"width\":  rec.data.width * 1,\n            \"dataIndex\": rec.data.dataIndex,\n            \"|renderer\": !rec.data.type.match(/date/i) ? \n                    \"function(v) { return String.format('{0}', v); }\" :\n                    \"function(v) { return String.format('{0}', v ? v.format('d/M/Y') : ''); }\" , // special for date\n            \"|xns\": \"Roo.grid\",\n            \"*prop\": \"cm[]\"\n        });\n    });\n    \n    \n    \n\n    alert(\"IPC:OUT:\" + JSON.stringify({\n        '|xns' : 'Roo',\n        xtype : \"GridPanel\",\n        \"title\": this.table,\n        \"fitToframe\": true,\n        \"fitContainer\": true,\n        \"tableName\": this.table,\n        \"background\": true,\n        \"region\" : 'center',\n        \"listeners\": {\n            \"|activate\": \"function() {\\n    _this.panel = this;\\n    if (_this.grid) {\\n        _this.grid.footer.onClick('first');\\n    }\\n}\"\n        },\n        \"items\": [\n            {\n                \"*prop\": \"grid\",\n                \"xtype\": \"Grid\",\n                \"autoExpandColumn\": this.firstTxtCol,\n                \"loadMask\": true,\n                \"listeners\": {\n                    \"|render\": \"function() \\n\" +\n                        \"{\\n\" +\n                        \"    _this.grid = this; \\n\" +\n                        \"    //_this.dialog = Pman.Dialog.FILL_IN\\n\" +\n                        \"    if (_this.panel.active) {\\n\" +\n                        \"       this.footer.onClick('first');\\n\" +\n                        \"    }\\n\" +\n                        \"}\",\n                    \"|rowdblclick\": \"function (_self, rowIndex, e)\\n\" + \n                        \"{\\n\" + \n                        \"    if (!_this.dialog) return;\\n\" + \n                        \"    _this.dialog.show( this.getDataSource().getAt(rowIndex).data, function() {\\n\" + \n                        \"        _this.grid.footer.onClick('first');\\n\" + \n                        \"    }); \\n\" + \n                        \"}\\n\"\n                },\n                \"|xns\": \"Roo.grid\",\n\n                \"items\": [\n                    {\n                        \"*prop\": \"dataSource\",\n                        \"xtype\": \"Store\",\n                         remoteSort : true,\n                        '|sortInfo' : \"{ field : '\" + this.firstTxtCol  +  \"', direction: 'ASC' }\", \n                        \"|xns\": \"Roo.data\",\n                        \"items\": [\n                            \n                            {\n                                \"*prop\": \"proxy\",\n                                \"xtype\": \"HttpProxy\",\n                                \"method\": \"GET\",\n                                \"|url\": \"baseURL + '/Roo/\" + this.table + \".php'\",\n                                \"|xns\": \"Roo.data\"\n                            },\n                            {\n                                '*prop' : 'reader',\n                                'xtype' : 'JsonReader',\n                                '|xns' : 'Roo.data',\n                                'id' : 'id',\n                                'root' : 'data',\n                                'totalProperty' : 'total'\n                            }\n                        ]\n                    },\n                    {\n                        \"*prop\": \"footer\",\n                        \"xtype\": \"PagingToolbar\",\n                        \"pageSize\": 25,\n                        \"displayInfo\": true,\n                        \"displayMsg\": \"Displaying \" + this.table + \"{0} - {1} of {2}\",\n                        \"emptyMsg\": \"No \" + this.table + \" found\",\n                        \"|xns\": \"Roo\"\n                    },\n                    {\n                        \"*prop\": \"toolbar\",\n                        \"xtype\": \"Toolbar\",\n                        \"|xns\": \"Roo\",\n                        \"items\": [\n                            {\n                                \"text\": \"Add\",\n                                \"xtype\": \"Button\",\n                                \"cls\": \"x-btn-text-icon\",\n                                \"|icon\": \"Roo.rootURL + 'images/default/dd/drop-add.gif'\",\n                                \"listeners\": {\n                                    \"|click\": \"function()\\n\"+\n                                        \"{\\n\"+\n                                        \"    if (!_this.dialog) return;\\n\" +\n                                        \"    _this.dialog.show( { id : 0 } , function() {\\n\"+\n                                        \"        _this.grid.footer.onClick('first');\\n\"+\n                                        \"   }); \\n\"+\n                                        \"}\\n\"\n                                },\n                                \"|xns\": \"Roo.Toolbar\"\n                            },\n                             // fill ????\n                            {\n                                \"text\": \"Delete\",\n                                \"cls\": \"x-btn-text-icon\",\n                                \"|icon\": \"rootURL + '/Pman/templates/images/trash.gif'\",\n                                \"xtype\": \"Button\",\n                                \"listeners\": {\n                                    \"|click\": \"function()\\n\"+\n                                        \"{\\n\"+\n                                        \"     Pman.genericDelete(_this, '\" + this.table + \"'); \\n\"+\n                                        \"}\\n\"+\n                                        \"        \"\n                                },\n                                \"|xns\": \"Roo.Toolbar\"\n                            }\n                        ]\n                    }, // end toolbar\n                ].concat( colmodel)\n            }\n        ]\n        \n        \n    }, null, 4));\n\n}",
-   "fitToframe" : true,
-   "background" : false,
-   "region" : "center",
-   "title" : "core_enum",
-   "xtype" : "GridPanel",
-   "$ xns" : "Roo",
-   "fitContainer" : true,
-   "String title" : "Create / Edit Grid",
-   "tableName" : "core_enum",
-   "items" : [
-    {
-     "listeners" : {
-      "|rowdblclick" : "function (_self, rowIndex, e)\n{\n    if (!_this.dialog) return;\n  \n}\n",
-      "|render" : "function() \n{\n    _this.grid = this; \n    //_this.dialog = Pman.Dialog.FILL_IN\n\n}",
-      "cellclick" : "function (_self, rowIndex, columnIndex, e)\n{\n\n        var di = this.colModel.getDataIndex(columnIndex);\n        if (di != 'active') {\n            return;\n        }\n         \n        var rec = _this.grid.ds.getAt(rowIndex);\n        \n        rec.set('active', rec.data.active * 1 ? 0 : 1);\n        rec.commit();\n         \n        \n}"
-     },
-     "Number clicksToEdit" : 1,
-     "autoExpandColumn" : "title",
-     "xtype" : "EditorGrid",
-     "loadMask" : true,
-     "$ xns" : "Roo.grid",
-     "* prop" : "grid",
-     "items" : [
-      {
-       "$ Array fields" : "[ 'active', 'dataIndex', 'type','title', 'width' ]",
-       "$ Array data" : "[\n  [ 1, 'test', 'test', 110 ]\n  \n\n]",
-       "Number id" : "'dataIndex'",
-       "xtype" : "SimpleStore",
-       "$ xns" : "Roo.data",
-       "* prop" : "ds"
-      },
-      {
-       "xtype" : "Toolbar",
-       "$ xns" : "Roo",
-       "* prop" : "toolbar",
-       "items" : [
-        {
-         "string text" : "Edit a Grid",
-         "xtype" : "TextItem",
-         "$ xns" : "Roo.Toolbar"
-        }
-       ]
-      },
-      {
-       "xtype" : "ColumnModel",
-       "width" : 75,
-       "header" : "Use ",
-       "$ renderer" : "function(v) {  \n    var state = v *1 > 0 ?  '-checked' : '';\n\n    return '<img class=\"x-grid-check-icon' + state + '\" src=\"' + Roo.BLANK_IMAGE_URL + '\"/>';\n                \n }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "active"
-      },
-      {
-       "xtype" : "ColumnModel",
-       "header" : "Database Column",
-       "width" : 150,
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "dataIndex"
-      },
-      {
-       "xtype" : "ColumnModel",
-       "width" : 100,
-       "header" : "Type",
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "type"
-      },
-      {
-       "xtype" : "ColumnModel",
-       "header" : "Title",
-       "width" : 75,
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "title",
-       "items" : [
-        {
-         "xtype" : "GridEditor",
-         "$ xns" : "Roo.grid",
-         "* prop" : "editor",
-         "items" : [
-          {
-           "xtype" : "TextField",
-           "$ xns" : "Roo.form",
-           "* prop" : "field"
-          }
-         ]
-        }
-       ]
-      },
-      {
-       "xtype" : "ColumnModel",
-       "width" : 75,
-       "header" : "Width",
-       "$ renderer" : "function(v) { return String.format('{0}', v); }",
-       "$ xns" : "Roo.grid",
-       "* prop" : "cm[]",
-       "dataIndex" : "width",
-       "items" : [
-        {
-         "xtype" : "GridEditor",
-         "$ xns" : "Roo.grid",
-         "* prop" : "editor",
-         "items" : [
-          {
-           "xtype" : "NumberField",
-           "Number decimalPrecision" : 0,
-           "$ xns" : "Roo.form",
-           "* prop" : "field"
-          }
-         ]
-        }
-       ]
-      }
-     ]
-    }
-   ]
-  }
- ]
-}
\ No newline at end of file
diff --git a/resources/Editors/Editor.Roo.grid.GridPanel.js b/resources/Editors/Editor.Roo.grid.GridPanel.js
deleted file mode 100644 (file)
index 61edb42..0000000
+++ /dev/null
@@ -1,384 +0,0 @@
-//<script type="text/javascript">
-
-// Auto generated file - created by app.Builder.js- do not edit directly (at present!)
-
-Roo.namespace('Editor.Roo.grid');
-
-Editor.Roo.grid.GridPanel = new Roo.XComponent({
-
- _strings : {
-  '4ce58cbe362a5d7b156992a496d55bf3' :"Database Column",
-  'b78a3223503896721cca1303f776159b' :"Title",
-  '2f616612593df62aeed112de4f03110e' :"Edit a Grid",
-  '0ccc2bf3fb98387c23b6ca5500244d6e' :"Use ",
-  'c671c787b49f50a3ace9fdc5bd597825' :"core_enum",
-  '32954654ac8fe66a1d09be19001de2d4' :"Width",
-  'a1fa27779242b4902f7ae3bdd5c6d508' :"Type",
-  '6e7376dca68a2386a8737944196ab491' :"Create / Edit Grid"
- },
-
-  part     :  ["Editors", "GridPanel" ],
-  order    : '001-Editor.Roo.grid.GridPanel',
-  region   : 'center',
-  parent   : false,
-  name     : "unnamed module",
-  disabled : false, 
-  permname : '', 
-  _tree : function()
-  {
-   var _this = this;
-   var MODULE = this;
-   return {
-   grid : {
-    ds : {
-     '|xns' : 'Roo.data',
-     data : [
-       [ 1, 'test', 'test', 110 ]
-       
-     
-     ],
-     fields : [ 'active', 'dataIndex', 'type','title', 'width' ],
-     id : 'dataindex',
-     xns : Roo.data,
-     xtype : 'SimpleStore'
-    },
-    toolbar : {
-     '|xns' : 'Roo',
-     xns : Roo,
-     xtype : 'Toolbar',
-     items : [
-      {
-       '|xns' : 'Roo.Toolbar',
-       text : _this._strings['2f616612593df62aeed112de4f03110e'],
-       xns : Roo.Toolbar,
-       xtype : 'TextItem'
-      }
-     ]
-
-    },
-    '|xns' : 'Roo.grid',
-    autoExpandColumn : 'title',
-    clicksToEdit : 1,
-    loadMask : true,
-    xns : Roo.grid,
-    xtype : 'EditorGrid',
-    cm : [
-      {
-       '|xns' : 'Roo.grid',
-       dataIndex : 'active',
-       header : _this._strings['0ccc2bf3fb98387c23b6ca5500244d6e'],
-       renderer : function(v) {  
-           var state = v *1 > 0 ?  '-checked' : '';
-       
-           return '<img class="x-grid-check-icon' + state + '" src="' + Roo.BLANK_IMAGE_URL + '"/>';
-                       
-        },
-       width : 75,
-       xns : Roo.grid,
-       xtype : 'ColumnModel'
-      },
-{
-       '|xns' : 'Roo.grid',
-       dataIndex : 'dataIndex',
-       header : _this._strings['4ce58cbe362a5d7b156992a496d55bf3'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 150,
-       xns : Roo.grid,
-       xtype : 'ColumnModel'
-      },
-{
-       '|xns' : 'Roo.grid',
-       dataIndex : 'type',
-       header : _this._strings['a1fa27779242b4902f7ae3bdd5c6d508'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 100,
-       xns : Roo.grid,
-       xtype : 'ColumnModel'
-      },
-{
-       editor : {
-        field : {
-         '|xns' : 'Roo.form',
-         xns : Roo.form,
-         xtype : 'TextField'
-        },
-        '|xns' : 'Roo.grid',
-        xns : Roo.grid,
-        xtype : 'GridEditor',
-        items : [
-
-        ]
-
-       },
-       '|xns' : 'Roo.grid',
-       dataIndex : 'title',
-       header : _this._strings['b78a3223503896721cca1303f776159b'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 75,
-       xns : Roo.grid,
-       xtype : 'ColumnModel',
-       items : [
-
-       ]
-
-      },
-{
-       editor : {
-        field : {
-         '|xns' : 'Roo.form',
-         decimalPrecision : 0,
-         xns : Roo.form,
-         xtype : 'NumberField'
-        },
-        '|xns' : 'Roo.grid',
-        xns : Roo.grid,
-        xtype : 'GridEditor',
-        items : [
-
-        ]
-
-       },
-       '|xns' : 'Roo.grid',
-       dataIndex : 'width',
-       header : _this._strings['32954654ac8fe66a1d09be19001de2d4'],
-       renderer : function(v) { return String.format('{0}', v); },
-       width : 75,
-       xns : Roo.grid,
-       xtype : 'ColumnModel',
-       items : [
-
-       ]
-
-      }
-    ],
-    listeners : {
-     cellclick : function (_self, rowIndex, columnIndex, e)
-      {
-      
-              var di = this.colModel.getDataIndex(columnIndex);
-              if (di != 'active') {
-                  return;
-              }
-               
-              var rec = _this.grid.ds.getAt(rowIndex);
-              
-              rec.set('active', rec.data.active * 1 ? 0 : 1);
-              rec.commit();
-               
-              
-      },
-     render : function() 
-      {
-          _this.grid = this; 
-          //_this.dialog = Pman.Dialog.FILL_IN
-      
-      },
-     rowdblclick : function (_self, rowIndex, e)
-      {
-          if (!_this.dialog) return;
-        
-      }
-    },
-    items : [
-
-    ]
-
-   },
-   '|xns' : 'Roo',
-   background : false,
-   fitContainer : true,
-   fitToframe : true,
-   loadData : function(data) { 
-   
-        alert("IPC:TEST:" + JSON.stringify(data,null,4));
-       var ar = [];
-       for (var k in data) { 
-           var r = data[k];
-           var has_s = typeof(r.relates_to_schema) != 'undefined'
-           ar.push([ !has_s , r.Field, r.Type,  r.Field, 100] );
-           if (!has_s) {
-               continue;
-           }
-           for (var kk in r.relates_to_schema) {         
-               var rr = r.relates_to_schema[kk];
-               if (rr.Field == r.relates_to_col) {
-                   continue;
-               }
-               ar.push([ false, r.Field + '_'+ rr.Field, rr.Type,  rr.Field, 100] );
-           }
-       }
-       
-       alert("IPC:TEST:" + JSON.stringify(ar));
-       this.grid.dataSource.loadData(ar);
-   },
-   region : 'center',
-   tableName : 'core_enum',
-   title : _this._strings['c671c787b49f50a3ace9fdc5bd597825'],
-   title : _this._strings['c671c787b49f50a3ace9fdc5bd597825'],
-   toBJS : function() { 
-   
-   // convert the selected cells into a BJS data ready to send back to the UI..
-      
-       this.table = "XXX";
-       this.firstTxtCol = "XXX";
-      
-       
-       var jreader = {};
-       var     colmodel = [];
-       this.grid.dataSource.each(function(rec) {
-           if (!rec.data.active) {
-               return;
-           }
-           
-           
-           
-           colmodel.push({
-               "xtype": "ColumnModel",
-               "header": rec.data.title,
-               "width":  rec.data.width * 1,
-               "dataIndex": rec.data.dataIndex,
-               "|renderer": !rec.data.type.match(/date/i) ? 
-                       "function(v) { return String.format('{0}', v); }" :
-                       "function(v) { return String.format('{0}', v ? v.format('d/M/Y') : ''); }" , // special for date
-               "|xns": "Roo.grid",
-               "*prop": "cm[]"
-           });
-       });
-       
-       
-       
-   
-       alert("IPC:OUT:" + JSON.stringify({
-           '|xns' : 'Roo',
-           xtype : "GridPanel",
-           "title": this.table,
-           "fitToframe": true,
-           "fitContainer": true,
-           "tableName": this.table,
-           "background": true,
-           "region" : 'center',
-           "listeners": {
-               "|activate": "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
-           },
-           "items": [
-               {
-                   "*prop": "grid",
-                   "xtype": "Grid",
-                   "autoExpandColumn": this.firstTxtCol,
-                   "loadMask": true,
-                   "listeners": {
-                       "|render": "function() \n" +
-                           "{\n" +
-                           "    _this.grid = this; \n" +
-                           "    //_this.dialog = Pman.Dialog.FILL_IN\n" +
-                           "    if (_this.panel.active) {\n" +
-                           "       this.footer.onClick('first');\n" +
-                           "    }\n" +
-                           "}",
-                       "|rowdblclick": "function (_self, rowIndex, e)\n" + 
-                           "{\n" + 
-                           "    if (!_this.dialog) return;\n" + 
-                           "    _this.dialog.show( this.getDataSource().getAt(rowIndex).data, function() {\n" + 
-                           "        _this.grid.footer.onClick('first');\n" + 
-                           "    }); \n" + 
-                           "}\n"
-                   },
-                   "|xns": "Roo.grid",
-   
-                   "items": [
-                       {
-                           "*prop": "dataSource",
-                           "xtype": "Store",
-                            remoteSort : true,
-                           '|sortInfo' : "{ field : '" + this.firstTxtCol  +  "', direction: 'ASC' }", 
-                           "|xns": "Roo.data",
-                           "items": [
-                               
-                               {
-                                   "*prop": "proxy",
-                                   "xtype": "HttpProxy",
-                                   "method": "GET",
-                                   "|url": "baseURL + '/Roo/" + this.table + ".php'",
-                                   "|xns": "Roo.data"
-                               },
-                               {
-                                   '*prop' : 'reader',
-                                   'xtype' : 'JsonReader',
-                                   '|xns' : 'Roo.data',
-                                   'id' : 'id',
-                                   'root' : 'data',
-                                   'totalProperty' : 'total'
-                               }
-                           ]
-                       },
-                       {
-                           "*prop": "footer",
-                           "xtype": "PagingToolbar",
-                           "pageSize": 25,
-                           "displayInfo": true,
-                           "displayMsg": "Displaying " + this.table + "{0} - {1} of {2}",
-                           "emptyMsg": "No " + this.table + " found",
-                           "|xns": "Roo"
-                       },
-                       {
-                           "*prop": "toolbar",
-                           "xtype": "Toolbar",
-                           "|xns": "Roo",
-                           "items": [
-                               {
-                                   "text": "Add",
-                                   "xtype": "Button",
-                                   "cls": "x-btn-text-icon",
-                                   "|icon": "Roo.rootURL + 'images/default/dd/drop-add.gif'",
-                                   "listeners": {
-                                       "|click": "function()\n"+
-                                           "{\n"+
-                                           "    if (!_this.dialog) return;\n" +
-                                           "    _this.dialog.show( { id : 0 } , function() {\n"+
-                                           "        _this.grid.footer.onClick('first');\n"+
-                                           "   }); \n"+
-                                           "}\n"
-                                   },
-                                   "|xns": "Roo.Toolbar"
-                               },
-                                // fill ????
-                               {
-                                   "text": "Delete",
-                                   "cls": "x-btn-text-icon",
-                                   "|icon": "rootURL + '/Pman/templates/images/trash.gif'",
-                                   "xtype": "Button",
-                                   "listeners": {
-                                       "|click": "function()\n"+
-                                           "{\n"+
-                                           "     Pman.genericDelete(_this, '" + this.table + "'); \n"+
-                                           "}\n"+
-                                           "        "
-                                   },
-                                   "|xns": "Roo.Toolbar"
-                               }
-                           ]
-                       }, // end toolbar
-                   ].concat( colmodel)
-               }
-           ]
-           
-           
-       }, null, 4));
-   
-   },
-   xns : Roo,
-   xtype : 'GridPanel',
-   listeners : {
-    activate : function() {
-         _this.panel = this;
-         if (_this.grid) {
-             _this.grid.footer.onClick('first');
-         }
-     }
-   },
-   items : [
-
-   ]
-
-  };  }
-});
index 0448738..c0d04c7 100644 (file)
@@ -16,7 +16,7 @@
    "default_height" : 200,
    "$ modal" : true,
    "$ xns" : "Gtk",
    "default_height" : 200,
    "$ modal" : true,
    "$ xns" : "Gtk",
-   "| JsRender.Node? show" : " (Xcls_MainWindow mwindow, Palete.Palete pal, JsRender.Node node, Project.Project project) {\n    \n    this.el.show_all();\n    var opts = pal.listTemplates(node);\n    if (opts.length() < 1) {\n        this.el.hide();\n        return node;\n    }\n    this.el.set_attached_to( mwindow.el);\n    this.el.set_transient_for( mwindow.el);\n    \n    //opts.unshift({ path: '' , name :'Just add Element' });\n     _this.model.loadData(opts);\n     _this.combo.el.set_active(-1);\n     \n     \n     var db =  new Palete.RooDatabase.from_project(project);\n     _this.dbmodel.loadData(db.readTablesGee());\n     \n     var plug = mwindow.windowstate.webkit_plugin;\n     \n     _this.dbcombo.el.set_active(-1);\n     \n     \n   \n    var res = this.el.run();\n    this.el.hide();    \n    //var ix = _this.combo.el.get_active();\n    if (res < 1 ) {\n        return null; // 0 = cancel.\n    }\n    if (res < 2 ) {\n        return node; // 1 = just add it..\n    }\n    \n    // have they selected a table??\n    \n   Gtk.TreeIter iter; \n    Value vfname;   \n    if (_this.dbcombo.el.get_active_iter (out iter)) {    \n         this.dbmodel.el.get_value (iter, 0, out vfname);\n         if (vfname.length > 0 && plug.has_plugin(node.fqn())) {\n            var json_str = plug.show(mwindow.el, project, node.fqn(), (string)vfname);\n            print(\"json_str = %s\\n\", json_str);\n            if (((string)json_str).length < 1) {\n\n                return node;\n            }\n            var pa = new Json.Parser();\n\t    pa.load_from_data(json_str);\n\t    var new_node = pa.get_root();\n\n\t    if (new_node.get_node_type () != Json.NodeType.OBJECT) {\n\t\t    return node;\n\t    }\n\t    var obj = new_node.get_object ();\n\n\t    var ret = new JsRender.Node();\n\n\t    ret.loadFromJson(obj, 1);\n\t    return ret;\n         }\n        \n    }\n\n    if (!_this.combo.el.get_active_iter (out iter)) {\n\n        return node; // nothing selected...\n    }\n   \n    this.model.el.get_value (iter, 0, out vfname);\n    \n    \n    return pal.loadTemplate((string)vfname);\n\n}\n",
+   "| JsRender.Node? show" : " (Xcls_MainWindow mwindow, Palete.Palete pal, JsRender.Node node, Project.Project project) {\n    \n    this.el.show_all();\n    var opts = pal.listTemplates(node);\n    if (opts.length() < 1) {\n        this.el.hide();\n        return node;\n    }\n    this.el.set_attached_to( mwindow.el);\n    this.el.set_transient_for( mwindow.el);\n    \n    //opts.unshift({ path: '' , name :'Just add Element' });\n     _this.model.loadData(opts);\n     _this.combo.el.set_active(-1);\n     \n     \n     var db =  new Palete.RooDatabase.from_project(project);\n     _this.dbmodel.loadData(db.readTablesGee());\n     \n     var plug = mwindow.windowstate.webkit_plugin;\n     \n     _this.dbcombo.el.set_active(-1);\n     \n     \n   \n    var res = this.el.run();\n    this.el.hide();    \n    //var ix = _this.combo.el.get_active();\n    if (res < 1 ) {\n        return null; // 0 = cancel.\n    }\n    if (res < 2 ) {\n        return node; // 1 = just add it..\n    }\n    \n    // have they selected a table??\n    \n   Gtk.TreeIter iter; \n    Value vfname;   \n    if (_this.dbcombo.el.get_active_iter (out iter)) {    \n         this.dbmodel.el.get_value (iter, 0, out vfname);\n         if (((string)vfname).length > 0 && plug.has_plugin(node.fqn())) {\n            var json_str = plug.show(mwindow.el, project, node.fqn(), (string)vfname);\n            print(\"json_str = %s\\n\", json_str);\n            if (json_str.length < 1) {\n\n                return node;\n            }\n            var pa = new Json.Parser();\n\t    pa.load_from_data(json_str);\n\t    var new_node = pa.get_root();\n\n\t    if (new_node.get_node_type () != Json.NodeType.OBJECT) {\n\t\t    return node;\n\t    }\n\t    var obj = new_node.get_object ();\n\n\t    var ret = new JsRender.Node();\n\n\t    ret.loadFromJson(obj, 1);\n\t    return ret;\n         }\n        \n    }\n\n    if (!_this.combo.el.get_active_iter (out iter)) {\n\n        return node; // nothing selected...\n    }\n   \n    this.model.el.get_value (iter, 0, out vfname);\n    \n    \n    return pal.loadTemplate((string)vfname);\n\n}\n",
    "items" : [
     {
      "xtype" : "VBox",
    "items" : [
     {
      "xtype" : "VBox",
index 3e4027b..c5395cd 100644 (file)
@@ -96,10 +96,10 @@ public class DialogTemplateSelect : Object
         Value vfname;   
         if (_this.dbcombo.el.get_active_iter (out iter)) {    
              this.dbmodel.el.get_value (iter, 0, out vfname);
         Value vfname;   
         if (_this.dbcombo.el.get_active_iter (out iter)) {    
              this.dbmodel.el.get_value (iter, 0, out vfname);
-             if (vfname.length > 0 && plug.has_plugin(node.fqn())) {
+             if (((string)vfname).length > 0 && plug.has_plugin(node.fqn())) {
                 var json_str = plug.show(mwindow.el, project, node.fqn(), (string)vfname);
                 print("json_str = %s\n", json_str);
                 var json_str = plug.show(mwindow.el, project, node.fqn(), (string)vfname);
                 print("json_str = %s\n", json_str);
-                if (((string)json_str).length < 1) {
+                if (json_str.length < 1) {
     
                     return node;
                 }
     
                     return node;
                 }
index 87cbd3e..359677b 100644 (file)
@@ -47,35 +47,35 @@ public class WindowState : Object
     // ctor 
     public WindowState(Xcls_MainWindow win)
     {
     // ctor 
     public WindowState(Xcls_MainWindow win)
     {
-        this.win = win;
-        // initialize
-
-        // left elements..
-        this.leftTreeInit();
-        this.propsListInit();
-
-        // on clutter space...
-        this.projectEditInit();
-        this.codeEditInit();
-        this.projectListInit();
-        this.fileViewInit();
-        
-        // adding stuff
-        this.objectAddInit();
-        this.propsAddInit();
-     
-        
-        // previews...
-        this.gtkViewInit();
-        this.webkitViewInit();
+               this.win = win;
+               // initialize
 
 
-        // dialogs
+               // left elements..
+               this.leftTreeInit();
+               this.propsListInit();
 
 
-        this.fileNewInit();
-        
-        this.webkit_plugin = new Xcls_DialogPluginWebkit();
-               this.template_select; = new DialogTemplateSelect();
-        this.children_loaded = true;
+               // on clutter space...
+               this.projectEditInit();
+               this.codeEditInit();
+               this.projectListInit();
+               this.fileViewInit();
+
+               // adding stuff
+               this.objectAddInit();
+               this.propsAddInit();
+
+
+               // previews...
+               this.gtkViewInit();
+               this.webkitViewInit();
+
+               // dialogs
+
+               this.fileNewInit();
+
+               this.webkit_plugin = new Xcls_DialogPluginWebkit();
+               this.template_select = new DialogTemplateSelect();
+               this.children_loaded = true;
     }
 
 
     }
 
 
index dd88445..425a2a2 100644 (file)
@@ -503,12 +503,12 @@ public class JsRender.Node : Object {
                        
                        if (Regex.match_simple("^\\s*function", val)) { 
                                funcs += "\n\t<b>" + 
                        
                        if (Regex.match_simple("^\\s*function", val)) { 
                                funcs += "\n\t<b>" + 
-                                       GLib.Markup.escape_text(i.substring(1)) +"</b> : " + 
+                                       GLib.Markup.escape_text(i.substring(1)).strip() +"</b> : " + 
                                        GLib.Markup.escape_text(val.split("\n")[0]);
                                continue;
                        }
                        if (Regex.match_simple("^\\s*\\(", val)) {
                                        GLib.Markup.escape_text(val.split("\n")[0]);
                                continue;
                        }
                        if (Regex.match_simple("^\\s*\\(", val)) {
-                               funcs += "\n\t<b>" + GLib.Markup.escape_text(i.substring(1)) +
+                               funcs += "\n\t<b>" + GLib.Markup.escape_text(i.substring(1)).strip() +
                                        "</b> : " + 
                                        GLib.Markup.escape_text(val.split("\n")[0]);
                                continue;
                                        "</b> : " + 
                                        GLib.Markup.escape_text(val.split("\n")[0]);
                                continue;
index dce4f34..776d34c 100644 (file)
@@ -105,9 +105,10 @@ builder_SOURCES = \
                Builder4/WindowAddProp.vala \
                Builder4/GtkView.vala \
                Builder4/ValaProjectSettings.vala \
                Builder4/WindowAddProp.vala \
                Builder4/GtkView.vala \
                Builder4/ValaProjectSettings.vala \
-               Builder4/MainWindow.vala \more 
+               Builder4/MainWindow.vala \
                Builder4/WindowState.vala \
                Builder4/FakeServer.vala \
                Builder4/WindowState.vala \
                Builder4/FakeServer.vala \
+               Builder4/DialogPluginWebkit.vala \
                Resources.vala 
                
                
                Resources.vala 
                
                
index 67d084c..acdf41b 100644 (file)
@@ -86,6 +86,7 @@ namespace Palete {
                        if (this.DBTYPE == "MySQL") { 
                                return this.fetchAll(this.cnc.execute_select_command( "SHOW TABLES" ));
                        }
                        if (this.DBTYPE == "MySQL") { 
                                return this.fetchAll(this.cnc.execute_select_command( "SHOW TABLES" ));
                        }
+                       print("Read tables failed DBTYPE = %s\n", this.DBTYPE);
                        return new Json.Array();
                        
                }
                        return new Json.Array();
                        
                }
index 0ed987f..b8b3bd8 100644 (file)
@@ -66,7 +66,7 @@ namespace Project {
                    
                    
                }
                    
                    
                }
-               public initRooDatabase()
+               public void  initRooDatabase()
                {
                         
                        this.roo_database = new Palete.RooDatabase.from_project(this);
                {
                         
                        this.roo_database = new Palete.RooDatabase.from_project(this);