Pman.Dialog.CoreEmail.bjs
authoredward <edward@roojs.com>
Tue, 10 Nov 2015 06:43:53 +0000 (14:43 +0800)
committeredward <edward@roojs.com>
Tue, 10 Nov 2015 06:43:53 +0000 (14:43 +0800)
Pman.Dialog.CoreEmail.js

Pman.Dialog.CoreEmail.bjs
Pman.Dialog.CoreEmail.js

index dec2ae5..ff250de 100644 (file)
          "xtype" : "ColumnModel",
          "header" : "Filename",
          "width" : 300,
-         "$ renderer" : "function(v,x,r)\n{\n    var width = r.data.width;\n    var height = r.data.height;\n    \n    if(width > 50){\n        width = 50;\n        height = Math.round(height * width / 50);\n    }\n    \n   return '<img src=\"' + baseURL + '/Images/' + r.data.id + '/' + r.data.filename + '\" width=\"' + width + '\" height=\"' + height + '\" />';\n}",
+         "$ renderer" : "function(v,x,r)\n{\n    var width = r.data.width;\n    var height = r.data.height;\n    \n    if(width > 50){\n        width = 50;\n        height = Math.round(height * 50 / width);\n    }\n    \n   return '<img src=\"' + baseURL + '/Images/' + r.data.id + '/' + r.data.filename + '\" width=\"' + width + '\" height=\"' + height + '\" />';\n}",
          "$ xns" : "Roo.grid",
          "* prop" : "colModel[]",
          "dataIndex" : "filename"
index 679bdf1..ba5e6dd 100644 (file)
@@ -1222,7 +1222,7 @@ Pman.Dialog.CoreEmail = {
              
              if(width > 50){
                  width = 50;
-                 height = Math.round(height * width / 50);
+                 height = Math.round(height * 50 / width);
              }
              
             return '<img src="' + baseURL + '/Images/' + r.data.id + '/' + r.data.filename + '" width="' + width + '" height="' + height + '" />';