87 lines
4.1 KiB
HTML
87 lines
4.1 KiB
HTML
<of-p-dropdownPanel [style]="{'width':'400px'}" [headerStyle]="{'width':'300px'}" [blockTarget]="blockTarget">
|
|
<p-header class="toolbar-button">
|
|
<button _ngcontent-c1="" class="button-component" type="button">
|
|
<!-- <svg _ngcontent-c1="" aria-hidden="true" class="octicon icon" version="1.1" viewBox="0 0 10 16" width="16px" height="16px">
|
|
<path _ngcontent-c1="" d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"></path>
|
|
</svg> -->
|
|
<div _ngcontent-c1="" class="text">
|
|
<div class="text-row">
|
|
<div _ngcontent-c1="" class="description">IP </div>
|
|
<div _ngcontent-c1="" class="title">V4 (192.168.1.1 ~ 192.168.1.254)</div>
|
|
</div>
|
|
<div class="text-row">
|
|
<div _ngcontent-c1="" class="description">Port </div>
|
|
<div _ngcontent-c1="" class="title">TCP, UDP (1 ~ 1024)</div>
|
|
</div>
|
|
</div>
|
|
<svg _ngcontent-c1="" aria-hidden="true" class="octicon dropdownArrow" version="1.1" viewBox="0 0 12 16" width="16px" height="16px">
|
|
<path _ngcontent-c1="" d="M0 5l6 6 6-6z">
|
|
</path>
|
|
</svg>
|
|
</button>
|
|
</p-header>
|
|
|
|
<div class="ui-g">
|
|
<div class="ui-g-12">
|
|
<div class="ui-g-2">
|
|
<h3>IP</h3>
|
|
</div>
|
|
<div class="ui-g-5">
|
|
<p-radioButton name="groupname" value="V4" label="V4" [(ngModel)]="selectedValue"></p-radioButton>
|
|
</div>
|
|
<div class="ui-g-5">
|
|
<p-radioButton name="groupname" value="V6" label="V6" [(ngModel)]="selectedValue"></p-radioButton>
|
|
</div>
|
|
<div class="ui-g-10 ui-g-offset-2">Rage :
|
|
<input type="text" pInputText placeholder="168.123.1.1" style="width:100px;"> -
|
|
<input type="text" pInputText placeholder="168.123.1.1" style="width:100px;">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="ui-g">
|
|
<div class="ui-g-12">
|
|
<div class="ui-g-2">
|
|
<h3>Port</h3>
|
|
</div>
|
|
<div class="ui-g-5">
|
|
<p-checkbox name="groupname" value="TCP" label="TCP" [(ngModel)]="selectedValue"></p-checkbox>
|
|
</div>
|
|
<div class="ui-g-5">
|
|
<p-checkbox name="groupname" value="UDP" label="UDP" [(ngModel)]="selectedValue"></p-checkbox>
|
|
</div>
|
|
<div class="ui-g-10 ui-g-offset-2">Rage :
|
|
<input type="text" pInputText placeholder="1" style="width:100px;"> -
|
|
<input type="text" pInputText placeholder="1024" style="width:100px;">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!--
|
|
<h3 class="first">Document</h3>
|
|
<p-blockUI [blocked]="blockedDocument"></p-blockUI>
|
|
|
|
<button type="button" pButton label="Block" (click)="blockDocument()"></button>
|
|
|
|
<h3>Panel</h3>
|
|
<button type="button" pButton label="Block" (click)="blockedPanel=true"></button>
|
|
<button type="button" pButton label="Unblock" (click)="blockedPanel=false"></button>
|
|
|
|
<p-blockUI [target]="pnl" [blocked]="blockedPanel">
|
|
<i class="fa fa-lock fa-5x" style="position:absolute;top:25%;left:50%"></i>
|
|
</p-blockUI>
|
|
<p-panel #pnl header="Godfather I" [style]="{'margin-top':'20px'}">
|
|
The story begins as Don Vito Corleone, the head of a New York Mafia family, oversees his daughter's wedding. His beloved
|
|
son Michael has just come home from the war, but does not intend to become part of his father's business. Through Michael's
|
|
life the nature of the family business becomes clear. The business of the family is just like the head of the family,
|
|
kind and benevolent to those who give respect, but given to ruthless violence whenever anything stands against the good
|
|
of the family.
|
|
</p-panel>
|
|
-->
|
|
<div class="ui-g-12">
|
|
<button type="button" pButton label="확인" (click)="blockDocument()" style="float: right;"></button>
|
|
</div>
|
|
<!-- <p-footer>
|
|
Footer content here
|
|
</p-footer> -->
|
|
</of-p-dropdownPanel> |