2013-10-21 23:42:16 +05:30
|
|
|
<div id="table_filter_container">
|
2013-09-07 22:36:23 +05:30
|
|
|
<input id="table_filter_text_box" class="filter_text_box text_box_transient" placeholder="Filter" ng-model="query">
|
|
|
|
</div>
|
|
|
|
|
2013-10-12 17:47:57 +05:30
|
|
|
<table class="data_table">
|
2013-08-17 00:02:58 +05:30
|
|
|
<tbody>
|
2013-09-07 22:36:23 +05:30
|
|
|
<tr class="data_table_row" ng-repeat="variable in variables | filterVariable:query">
|
|
|
|
<td class="data_table_cell no_overflow" style="text-align: right; padding-right: 30px;">{{ variable.name }}</td>
|
2013-10-21 23:42:16 +05:30
|
|
|
<!-- Small hack to select/unselect variables -->
|
|
|
|
<td ng-class="{'data_table_cell': true, 'no_overflow': !variable._is_selected}" style="text-align: left; padding-right: 30px;" ng-click="variable._is_selected=!variable._is_selected">{{ variable.value }}</td>
|
2013-08-17 00:02:58 +05:30
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|