resources/Editors/Editor.Roo.LayoutDialog.bjs
[app.Builder.js] / resources / Editors / Editor.Roo.LayoutDialog.js
index 4538bb1..6c30a50 100644 (file)
@@ -246,6 +246,11 @@ Editor.Roo.LayoutDialog = new Roo.XComponent({
          }
        }
       },
+      {
+       '|xns' : 'Roo.Toolbar',
+       xns : Roo.Toolbar,
+       xtype : 'Separator'
+      },
       {
        '|xns' : 'Roo.Toolbar',
        text : _this._strings['040076bde7f6b3387448e32b66c2eee0'],
@@ -547,7 +552,7 @@ Editor.Roo.LayoutDialog = new Roo.XComponent({
                dataIndex : r.Field,
                type : r.Type,
                title : r.Field,
-               width : 100,
+               width : 200,
                ftype : 'TextField',
                display_field : rc, //r.Field + '_display_name',
                relates_to_table : rt,
@@ -596,8 +601,6 @@ Editor.Roo.LayoutDialog = new Roo.XComponent({
            ar.push(a);
        });
        
-       
-       Roo.log(ar);
        this.schema = data;
        
        //alert("IPC:TEST:" + JSON.stringify(ar));
@@ -626,25 +629,25 @@ Editor.Roo.LayoutDialog = new Roo.XComponent({
            var el = {
                fieldLabel : rec.data.title,
                name : rec.data.dataIndex,
-               width : r.data.width,
+               width : rec.data.width,
                '|xns' : 'Roo.form',
                xtype : rec.data.ftype
            }
-            if (xtype == 'DateField') {
+            if (el.xtype == 'DateField') {
                el.format = 'Y-m-d';
                el.useIso = true;
                el.width = 100;
            }
            
-           if (xtype == 'TextArea') {
+           if (el.xtype == 'TextArea') {
                el.height = 100;
            }
            
-           if (xtype == 'Hidden') {
+           if (el.xtype == 'Hidden') {
                delete el.fieldLabel;
                delete el.width;
            }
-           if (xtype == 'Combobox') {
+           if (el.xtype == 'ComboBox') {
            
    
                el.queryParam  = 'query[' + rec.data.display_field + ']';// SET WHEN USED
@@ -697,8 +700,8 @@ Editor.Roo.LayoutDialog = new Roo.XComponent({
                ];
            
            }
-           
-           if (xtype == 'HtmlEditor') {
+           /*
+           if (el.xtype == 'HtmlEditor') {
                el.height = 100,
                el.resizable = 's',
                el.toolbar = [
@@ -713,7 +716,7 @@ Editor.Roo.LayoutDialog = new Roo.XComponent({
                   }
                ]
            }
-           
+           */
            formElements.push(el);
            
            formHeight += rec.data.ftype == 'TextArea' ? 100 : 30;