Console output too chatty?
Set com.glide.util.Log.developer_filter = true
to cut down on non-interactive console log entries such as scheduled workers. (Don't forget to remove it when you're done!)
Note: Fast! These don't need a database.
Console output too chatty?
Set com.glide.util.Log.developer_filter = true
to cut down on non-interactive console log entries such as scheduled workers. (Don't forget to remove it when you're done!)
Note: Fast! These don't need a database.
<div class="panel panel-primary"> | |
<div class="panel-heading">Request an item from the catalog</div> | |
<div class="panel-body"> | |
<input class="form-control" type="search" placeholder="Start typing here to search the list of catalog items" ng-model="c.data.keywords" ng-change="c.server.update()" ng-model-options="{debounce: 250}" /> | |
<h5 ng-if="!c.data.keywords">Showing the most popular items</h5> | |
<ul class="list-group result-container"> | |
<li class="list-group-item" ng-repeat="item in c.data.items"> | |
<a href ng-click="c.select(item.sys_id)"><category-icon category="item.category" style="margin-right: 10px"></category-icon>{{item.name}}</a><span class="pull-right">{{item.price}}</span> | |
<div class="catalog-item" ng-if="item.sys_id == c.openItem"> | |
<sp-widget ng-if="c.catalogItemWidget" widget="c.catalogItemWidget" /> |