Skip to content

Commit

Permalink
fixed qtree column width bug
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewirts committed Apr 22, 2015
1 parent 8fa9405 commit 517161c
Show file tree
Hide file tree
Showing 37 changed files with 84 additions and 1 deletion.
41 changes: 41 additions & 0 deletions fin-hypergrid.dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -21350,6 +21350,7 @@






</style>
Expand Down Expand Up @@ -22453,6 +22454,7 @@






</style>
Expand Down Expand Up @@ -22703,6 +22705,7 @@






</style>
Expand Down Expand Up @@ -23006,6 +23009,7 @@






</style>
Expand Down Expand Up @@ -23309,6 +23313,7 @@






</style>
Expand Down Expand Up @@ -23650,6 +23655,7 @@






</style>
Expand Down Expand Up @@ -23767,6 +23773,7 @@






</style>
Expand Down Expand Up @@ -23953,6 +23960,7 @@






</style>
Expand Down Expand Up @@ -24614,6 +24622,7 @@






</style>
Expand Down Expand Up @@ -24907,6 +24916,7 @@






</style>
Expand Down Expand Up @@ -25104,6 +25114,7 @@






</style>
Expand Down Expand Up @@ -25295,6 +25306,7 @@






</style>
Expand Down Expand Up @@ -25500,6 +25512,7 @@






</style>
Expand Down Expand Up @@ -25822,6 +25835,7 @@






</style>
Expand Down Expand Up @@ -26464,6 +26478,7 @@






</style>
Expand Down Expand Up @@ -26622,6 +26637,7 @@






</style>
Expand Down Expand Up @@ -26727,6 +26743,7 @@






</style>
Expand Down Expand Up @@ -27597,6 +27614,7 @@






</style>
Expand Down Expand Up @@ -27802,6 +27820,7 @@






</style>
Expand Down Expand Up @@ -28262,6 +28281,7 @@






</style>
Expand Down Expand Up @@ -28884,6 +28904,7 @@






</style>
Expand Down Expand Up @@ -29328,6 +29349,7 @@






</style>
Expand Down Expand Up @@ -29766,6 +29788,7 @@






</style>
Expand Down Expand Up @@ -30346,7 +30369,15 @@
}
var msgId = this.getNextMessageId(function(message) {
//ignore any predecessor column swap results if a new one has been posted
var colCount = self.getColumnCount();
var widths = [];
for (var i = 0; i < colCount; i++) {
widths[i] = self._getColumnWidth(i);
}
self.initColumnIndexes();
for (i = 0; i < colCount; i++) {
widths[i] = self._setColumnWidth(i, widths[i]);
}
self.handleMessage(message);
});
var changeCols = {
Expand Down Expand Up @@ -30483,6 +30514,7 @@






</style>
Expand Down Expand Up @@ -30816,6 +30848,7 @@






</style>
Expand Down Expand Up @@ -31118,6 +31151,7 @@






</style>
Expand Down Expand Up @@ -31366,6 +31400,7 @@






</style>
Expand Down Expand Up @@ -31551,6 +31586,7 @@






</style>
Expand Down Expand Up @@ -31739,6 +31775,7 @@






</style>
Expand Down Expand Up @@ -31921,6 +31958,7 @@






</style>
Expand Down Expand Up @@ -32103,6 +32141,7 @@






</style>
Expand Down Expand Up @@ -32285,6 +32324,7 @@






</style>
Expand Down Expand Up @@ -32532,6 +32572,7 @@






</style>
Expand Down
2 changes: 1 addition & 1 deletion fin-hypergrid.min.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions polymer/css/behaviors/fin-hypergrid-behavior-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,6 @@






1 change: 1 addition & 0 deletions polymer/css/behaviors/fin-hypergrid-behavior-default.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






1 change: 1 addition & 0 deletions polymer/css/behaviors/fin-hypergrid-behavior-gol.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






1 change: 1 addition & 0 deletions polymer/css/behaviors/fin-hypergrid-behavior-in-memory.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






1 change: 1 addition & 0 deletions polymer/css/behaviors/fin-hypergrid-behavior-json.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






1 change: 1 addition & 0 deletions polymer/css/behaviors/fin-hypergrid-behavior-q.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






1 change: 1 addition & 0 deletions polymer/css/behaviors/fin-hypergrid-behavior-qtree.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,6 @@






1 change: 1 addition & 0 deletions polymer/css/data.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,6 @@






Loading

0 comments on commit 517161c

Please sign in to comment.