INVESTORS IN COMMUNITY
Menu
Home
(current)
Explore
About Us
Cnx Developers
Log In
Sign Up
Loading
Pagination
<
1
2
3
...
>
<nav aria-label="Page navigation example"><ul class="pagination iic-pagination"><li class="page-item"><a class="page-link" href="#"><</a></li><li class="page-item active"><a class="page-link" href="#">1</a></li><li class="page-item"><a class="page-link" href="#">2</a></li><li class="page-item"><a class="page-link" href="#">3</a></li><li class="page-item"><a class="page-link" href="#">...</a></li><li class="page-item"><a class="page-link" href="#">></a></li></ul></nav>
Text Input
Enabled Input Text
Disabled Input Text [attr.disabled]
<div class="form-group"><label for="inputTextField">Enabled Input Text</label><input class="form-control iic-input" id="inputTextField" placeholder="Placeholder" type="text" value="Input value"></div> <div class="form-group"><label for="inputDisabledTextField">Disabled Input Text [attr.disabled]</label><input class="form-control iic-input" disabled="" id="inputDisabledTextField" type="text" value="Input value"></div>
Buttons
REJECT
ACCEPT
DOWNLOAD
SHARE
<div class="form-group"><button class="btn btn-color-red iic-btn-flat mr-5"><i class="iic-icon icon-menu-activities"></i> REJECT</button><button class="btn btn-color-green iic-btn-flat mr-5"><i class="iic-icon icon-menu-activities"></i> ACCEPT</button><button class="btn btn-color-blue iic-btn-flat mr-5"><i class="iic-icon icon-menu-activities"></i> DOWNLOAD</button><button class="btn btn-color-purple iic-btn-flat"><i class="iic-icon icon-menu-activities"></i> SHARE</button></div>
DONATE NOW
DONATE NOW
<div class="form-group"><button class="btn btn-green iic-btn w-100">DONATE NOW</button></div> <div class="form-group"><button class="btn iic-btn w-100">DONATE NOW</button></div>
Textarea
Simple label
<div class="form-group"><label for="textareaField">Simple label</label><textarea class="form-control iic-textarea" id="textareaField" placeholder="Textarea value" type="text"></textarea></div>
Dropdown & Select
Simple Dropdown
Dropdown Item 1
Dropdown Item 2
Dropdown Item 3
Dropdown Item 4
<div class="form-group"> <div class="dropdown iic-dropdown"> <button class="btn dropdown-toggle" type="button" id="typeOfGivingDropdown" data-toggle="dropdown"> Simple Dropdown </button> <div class="dropdown-menu" aria-labelledby="typeOfGivingDropdown"> <a class="dropdown-item" href="#">Dropdown Item 1</a> <a class="dropdown-item" href="#">Dropdown Item 2</a> <a class="dropdown-item" href="#">Dropdown Item 3</a> <a class="dropdown-item" href="#">Dropdown Item 4</a> </div> </div> </div>
Auto Width Dropdown
Dropdown Item 1
Dropdown Item 2
Dropdown Item 3
Dropdown Item 4
<div class="form-group"> <div class="dropdown iic-dropdown iic-dropdown-auto-width"> <button class="btn dropdown-toggle" type="button" id="typeOfGivingDropdown" data-toggle="dropdown"> Auto Width Dropdown </button> <div class="dropdown-menu" aria-labelledby="typeOfGivingDropdown"> <a class="dropdown-item" href="#">Dropdown Item 1</a> <a class="dropdown-item" href="#">Dropdown Item 2</a> <a class="dropdown-item" href="#">Dropdown Item 3</a> <a class="dropdown-item" href="#">Dropdown Item 4</a> </div> </div> </div>
Select Option
First
Second
Third
<div class="form-group"><select class="iic-select"><option disabled="" selected="">Select Option</option><option>First</option><option>Second</option><option>Third</option></select></div>
Checkbox / Radio
Unchecked
Checked
<div class="form-group"><label class="iic-checkbox"><input type="checkbox"><span>Unchecked</span></label></div>
Unchecked
Checked
<div class="form-group"><label class="iic-radio"><input type="radio"><span>Unchecked</span></label></div>
Test Box
REJECT
ACCEPT
DONATIONS
SKILLED VOLUNTEERING
VOLUNTEERING
GIFTS
NAME
EMAIL
All
John Deighton
frank.c@coca-cola.com
Jordan Henderson
handerson.c@coca-cola.com
Danny Murphy
danny.c@coca-cola.com
Kim Lee Reese
im.lee@coca-cola.com
1
Test Tab Skilled Volunteering
Test Tab Volunteering
Test Tab Skilled Gifts
<div class="box-container box-content-shrinked"> <h4 class="box-header border-bottom">Test Box</h4> <div class="position-absolute r-3 mt-3"> <div class="form-group text-right"> <button class="btn btn-color-red iic-btn-flat mr-3"><i class="far fa-times-circle"></i>REJECT</button> <button class="btn btn-color-green iic-btn-flat"><i class="far fa-check-circle"></i>ACCEPT</button> </div> </div> <tabset class="iic-tabset iic-tabset-theme-simple"> <tab heading="DONATIONS"> <p-table class="iic-data-table iic-primeng-pagination" #dt [columns]="tabsetCols" [value]="tabsetRecords" [paginator]="true" [rows]="10" [totalRecords]="tabsetRecords.length"> <ng-template pTemplate="header" let-columns> <tr> <th *ngFor="let col of columns" [ngClass]="col.class"> {{col.header}} </th> <th class="text-right"> <label class="iic-checkbox"><span>All</span><input type="checkbox"></label> </th> </tr> </ng-template> <ng-template pTemplate="body" let-rowData let-columns="columns"> <tr [pSelectableRow]="rowData"> <td *ngFor="let col of columns" [ngClass]="col.class"> {{rowData[col.field]}} </td> <td class="text-right"> <label class="iic-checkbox"><input type="checkbox"></label> </td> </tr> </ng-template> </p-table> </tab> <tab heading="SKILLED VOLUNTEERING"> <div class="container py-3"> Test Tab Skilled Volunteering </div> </tab> <tab heading="VOLUNTEERING"> <div class="container py-3"> Test Tab Volunteering </div> </tab> <tab heading="GIFTS"> <div class="container py-3"> Test Tab Skilled Gifts </div> </tab> </tabset> </div>