You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by zh...@apache.org on 2016/10/31 09:10:24 UTC

[2/2] kylin git commit: KYLIN-1321 Add derived checkbox for lookup table columns on Auto Generate Dimensions panel, style update

KYLIN-1321 Add derived checkbox for lookup table columns on Auto Generate Dimensions panel, style update


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/21ecfce6
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/21ecfce6
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/21ecfce6

Branch: refs/heads/v1.6.0-rc1
Commit: 21ecfce6d0593c891c4cf7a6360c5ee29b01710c
Parents: d01a1f7
Author: Jason <ji...@163.com>
Authored: Mon Oct 31 17:08:14 2016 +0800
Committer: Jason <ji...@163.com>
Committed: Mon Oct 31 17:10:07 2016 +0800

----------------------------------------------------------------------
 webapp/app/partials/cubeDesigner/dimensions.html | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/21ecfce6/webapp/app/partials/cubeDesigner/dimensions.html
----------------------------------------------------------------------
diff --git a/webapp/app/partials/cubeDesigner/dimensions.html b/webapp/app/partials/cubeDesigner/dimensions.html
index 62ca5c9..9539250 100644
--- a/webapp/app/partials/cubeDesigner/dimensions.html
+++ b/webapp/app/partials/cubeDesigner/dimensions.html
@@ -240,10 +240,10 @@
                                 <h4>{{table}}[FactTable]</h4>
                                 <table class="table table-striped table-hover ng-scope"    >
                                   <tr >
-                                    <td class="col-xs-1"><label><input type="checkbox" ng-model="selectedColumns[table].all" ng-change="autoChangeAll(table)">Select All</label></td>
+                                    <td class="col-xs-2"><label><input type="checkbox" ng-model="selectedColumns[table].all" ng-change="autoChangeAll(table)">Select All</label></td>
                                     <td class="col-xs-4"><label>Name</label></td>
                                     <td class="col-xs-3"><label>Columns</label></td>
-                                    <td colspan="2" class="col-xs-4"></td>
+                                    <td colspan="2" class="col-xs-3"></td>
                                   </tr>
                                   <tr ng-repeat="col in availableColumns[table] track by col.table + '.' + col.name" >
                                     <td >
@@ -266,10 +266,10 @@
                                 <h4>{{table}}[LookupTable]</h4>
                                 <table class="table table-striped table-hover ng-scope">
                                   <tr class="row" >
-                                    <td class="col-xs-1"><label><input type="checkbox" ng-model="selectedColumns[table].all" ng-change="autoChangeAll(table)">Select All</label></td>
+                                    <td class="col-xs-2"><label><input type="checkbox" ng-model="selectedColumns[table].all" ng-change="autoChangeAll(table)">Select All</label></td>
                                     <td class="col-xs-4"><label>Name</label></td>
                                     <td class="col-xs-3"><label>Columns</label></td>
-                                    <td colspan="2" class="col-xs-4"></td>
+                                    <td colspan="2" class="col-xs-3"></td>
                                   </tr>
                                   <tr ng-repeat="col in availableColumns[table] track by col.table + '.' + col.name" class="row">
                                     <td class=>
@@ -299,8 +299,8 @@
             </div>
         </div>
         <div class="modal-footer">
-            <button class="btn btn-primary" ng-disabled="" ng-click="checkAutoDimension()?ok():''">OK</button>
             <button class="btn btn-warning" ng-click="cancel()">Cancel</button>
+            <button class="btn btn-primary" ng-disabled="" ng-click="checkAutoDimension()?ok():''">OK</button>
         </div>
     </script>
     </ng-form>