ing
This commit is contained in:
parent
ccf9ff53a8
commit
7d70d61205
|
@ -45,6 +45,7 @@ export class DiscoveryComponent {
|
|||
switch (discoveryNotify.method) {
|
||||
case 'DiscoveryService.discoveryStart': {
|
||||
const startDate = discoveryNotify.params as Date;
|
||||
|
||||
break;
|
||||
}
|
||||
case 'DiscoveryService.discoveryStop': {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { ServiceSelectorComponent } from './discovery/service-selector/service-selector.component';
|
||||
import { ServiceSelectorComponent } from './service-selector.component';
|
||||
import { DiscoveryComponent } from './discovery.component';
|
||||
import { SearchConfigComponent } from './search-config.component';
|
||||
import { SearchFilterComponent } from './search-filter.component';
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
<span *ngIf="discoverZone.discoverHost.discoverPort.includeUDP">UDP</span>
|
||||
|
||||
<div *ngIf="services.length > 0">
|
||||
<p-overlayPanel #op>
|
||||
<div *ngFor="let service of services">
|
||||
{{service}}
|
||||
</div>
|
||||
</p-overlayPanel>
|
||||
<p-overlayPanel #op>
|
||||
<div *ngFor="let service of services">
|
||||
{{service}}
|
||||
</div>
|
||||
</p-overlayPanel>
|
||||
|
||||
<button type="text" pButton label="{{services.length}} services has selected." (click)="op.toggle($event)"></button>
|
||||
</div>
|
||||
<a style="cursor: pointer" (click)="op.toggle($event)">{{services.length}} services has selected.</a>
|
||||
</div>
|
||||
</div>
|
|
@ -29,4 +29,8 @@ export class RequestSummaryComponent implements OnChanges {
|
|||
+ this.discoverZone.discoverHost.discoverPort.lastScanRange;
|
||||
this.services = this.discoverZone.discoverHost.discoverPort.discoverService.includeServices;
|
||||
}
|
||||
|
||||
showServices() {
|
||||
return '1/n2/n3/n4';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,11 @@
|
|||
dataKey="id" (onRowSelect)="onSelect($event.data)" (onRowUnselect)="onUnselect($event.data)">
|
||||
<ng-template pTemplate="body" let-rowData let-columns="columns">
|
||||
<tr [pSelectableRow]="rowData">
|
||||
<!-- <td>
|
||||
<p-tableCheckbox [value]="rowData"></p-tableCheckbox>
|
||||
</td> -->
|
||||
<td>
|
||||
<p-tableCheckbox [value]="rowData"></p-tableCheckbox>
|
||||
{{rowData.description}}
|
||||
</td>
|
||||
</tr>
|
Loading…
Reference in New Issue
Block a user