This commit is contained in:
sunny 2018-04-27 15:28:25 +09:00
parent 0a72731885
commit 90c40ee731
3 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<div *ngIf="target; else info" class="ui-width-100-">
<p-orderList [value]="crawlers" [listStyle]="{'height':'200px'}" [responsive]="true" filterBy="name"
(onSelectionChange)="onSelectionChange($event)">
(onSelectionChange)="onSelectionChange($event)" class="ui_orderlist_controls_none">
<ng-template let-crawler pTemplate="item">
<div class="ui-helper-clearfix">
<div style="font-size:14px;margin:0">{{crawler.name}}</div>

View File

@ -1,6 +1,6 @@
<div *ngIf="preTarget === null" class="ui-width-100-">
<p-orderList [value]="targets" [listStyle]="{'height':'200px'}" [responsive]="true" filterBy="displayName"
(onSelectionChange)="onSelectionChange($event)">
(onSelectionChange)="onSelectionChange($event)" class="ui_orderlist_controls_none">
<ng-template let-target pTemplate="item">
<div class="ui-helper-clearfix">
<img src="assets/demo/images/car/BMW.gif" style="display:inline-block;margin:2px 0 2px 2px" />

View File

@ -257,3 +257,9 @@
margin-top: -30px;
margin-right: -5px;
}
.ui_orderlist_controls_none {
.ui-orderlist-controls {
display: none !important;
}
}