Efficient sort of arbitrary fields in table panel. Sweet
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<div class="row-fluid" ng-controller="table">
|
||||
<div class="span12">
|
||||
<div style="width:90%">
|
||||
<form class="input-append">
|
||||
<h6>Query</h6>
|
||||
<input type="text" style="width:90%" ng-model="panel.query">
|
||||
@@ -20,9 +20,10 @@
|
||||
<span style="margin-left:3px" ng-click="toggle_field(field)" ng-repeat="field in $parent.panel.fields" class="label remove pointer">{{field}} </span>
|
||||
</div>
|
||||
</div>
|
||||
<h5>Sorting</h5>
|
||||
<div class="row-fluid">
|
||||
<div class="span2">
|
||||
<h6>Sortable</h6><input type="checkbox" ng-model="panel.sortable" ng-checked="panel.sortable">
|
||||
<div class="span1">
|
||||
<h6>Enable</h6><input type="checkbox" ng-model="panel.sortable" ng-checked="panel.sortable">
|
||||
</div>
|
||||
<div class="span4" style="white-space:nowrap" ng-show='panel.sortable'>
|
||||
<h6>Sort</h6>
|
||||
@@ -30,12 +31,27 @@
|
||||
<select ng-show="all_fields.length>0"style="width:85%" ng-model="panel.sort[0]" ng-options="f for f in all_fields"></select>
|
||||
<i ng-click="set_sort(panel.sort[0])" ng-class="{'icon-chevron-up': panel.sort[1] == 'asc','icon-chevron-down': panel.sort[1] == 'desc'}"></i>
|
||||
</div>
|
||||
<div class="span3">
|
||||
<h6>Length</h6>
|
||||
</div>
|
||||
<h5>Paging and Appearence</h5>
|
||||
<div class="row-fluid">
|
||||
<div class="span3"><h6>Font Size</h6>
|
||||
<select class="input-small" ng-model="panel.style['font-size']" ng-options="f for f in ['7pt','8pt','9pt','10pt','12pt','14pt','16pt','18pt','20pt','24pt','28pt','32pt','36pt','42pt','48pt','52pt','60pt','72pt']"></select></span>
|
||||
</div>
|
||||
<div class="span2">
|
||||
<h6>Per Page</h6>
|
||||
<input type="number" class="input-mini" ng-model="panel.size" ng-change="get_data()">
|
||||
</div>
|
||||
<div class="span3"><h6>Font Size</h6>
|
||||
<select class="input-small" ng-model="panel.style['font-size']" ng-options="f for f in ['6pt','7pt','8pt','10pt','12pt','14pt','16pt','18pt','20pt','24pt','28pt','32pt','36pt','42pt','48pt','52pt','60pt','72pt']"></select></span>
|
||||
<div class="span1">
|
||||
<h6> </h6>
|
||||
<center><i class='icon-remove'></i><center>
|
||||
</div>
|
||||
<div class="span2">
|
||||
<h6>Page limit</h6>
|
||||
<input type="number" class="input-mini" ng-model="panel.pages" ng-change="get_data()">
|
||||
</div>
|
||||
<div class="span2 large">
|
||||
<h6>Pageable</h6>
|
||||
<strong>= {{panel.size * panel.pages}}</strong>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="row-fluid" ng-show='panel.sortable'>
|
||||
|
||||
Reference in New Issue
Block a user