X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Roo%2Fhtmleditor%2FBlockTd.js;h=acf00d76207cefc7d6baf7fcab553829bb1ecd11;hb=1143ba0aa09edca65c87ade295d6f8e569f73a66;hp=6a6a7de386a47f0eaff9b97d120e01ea6b8f4093;hpb=a3417898ab451fe9242109246dcbdb7efbb43434;p=roojs1 diff --git a/Roo/htmleditor/BlockTd.js b/Roo/htmleditor/BlockTd.js index 6a6a7de386..acf00d7620 100644 --- a/Roo/htmleditor/BlockTd.js +++ b/Roo/htmleditor/BlockTd.js @@ -444,6 +444,8 @@ Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, { if (typeof(this.colWidths[cn]) == 'undefined') { this.colWidths[cn] = ce.style.width; + console.log("colWidths " + cn); + console.log(ce.style.width); if (this.colWidths[cn] != '') { all_auto = false; } @@ -486,6 +488,7 @@ Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, { mergeRight: function() { + console.log("htmleditor.BlockTd mergeRight"); // get the contents of the next cell along.. var tr = this.node.closest('tr'); @@ -603,6 +606,8 @@ Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, { }, updateWidths : function(table) { + console.log("htmleditor.BlockTd updateWidths"); + console.log(table); for(var r = 0 ; r < table.length; r++) { for(var c = 0 ; c < table[r].length; c++) { @@ -621,6 +626,11 @@ Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, { }, normalizeWidths : function(table) { + console.log("htmleditor.BlockTd normalizeWidths"); + console.log("colWidths 0"); + console.log(this.colWidths[0]); + console.log("colWidths 1"); + console.log(this.colWidths[1]); if (this.colWidths[0] === false) { var nw = 100.0 / this.colWidths.length; @@ -689,7 +699,9 @@ Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, { }, growColumn : function() { + console.log("htmleditor.BlockTd growColumn"); var table = this.toTableArray(); + console.log(table); this.normalizeWidths(table); var col = this.cellData.col; var nw = this.colWidths[col] * 1.2;