Skip to content
This repository has been archived by the owner on Nov 22, 2019. It is now read-only.

Commit

Permalink
Updates readmes and minor formatting change
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrillin committed Jan 5, 2018
1 parent 4d729f1 commit 41be2e1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Expand Up @@ -5,6 +5,14 @@
overflow-y: auto;
}

.jdbc-table-header {
margin-left: 5px;
}

.jdbc-table-cell {
margin-left: 5px;
}

.jdbc-list .list-view-pf-main-info {
padding-top: 0.5em;
padding-bottom: 0.5em;
Expand Down
Expand Up @@ -89,15 +89,15 @@
[draggable]="false"
[resizeable]="false">
<ng-template ngx-datatable-header-template let-value="value" let-allRowsSelected="selectedAllRows" let-selectFn="selectAllTables">
<input type="checkbox" [checked]="selectedAllRows" (change)="selectAllTables()"/>Tables
<input type="checkbox" [checked]="selectedAllRows" (change)="selectAllTables()"/><span class="jdbc-table-header">Tables</span>
<input type="text"
class="col-sm-12"
style='border:solid 1px #dddddd;padding:8px;margin:0 auto;width:100%;height:24px'
placeholder='Filter tables'
(keyup)='tableFilterChanged($event)'/>
</ng-template>
<ng-template ngx-datatable-cell-template let-row="row" let-isSelected="row.selected" let-onCheckboxChangeFn="selectedTableChanged">
<input type="checkbox" [checked]="row.selected" (change)="selectedTableChanged( row )"/>{{ row.name }}
<input type="checkbox" [checked]="row.selected" (change)="selectedTableChanged( row )"/><span class="jdbc-table-cell">{{ row.name }}</span>
</ng-template>
</ngx-datatable-column>
</ngx-datatable>
Expand Down

0 comments on commit 41be2e1

Please sign in to comment.