Skip to content

Support fixed header columns #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Apr 10, 2017
Merged
Prev Previous commit
Next Next commit
Fix Issue #29: Removed unused code
  • Loading branch information
AndreyChayko committed Apr 6, 2017
commit b8c6c5a12a662577f7cf2316cf680f29be07c267
17 changes: 0 additions & 17 deletions demo/bootstrap/css/angular-data-grid.bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,3 @@
.sortable.sort-descent:after {
content: "\f0dd";
vertical-align: top; }

.fixed {
top: 0;
position: fixed;
width: auto;
border: none;
display: table;
z-index: 99; }
.fixed tr {
background-color: #fff; }

.tbody-offset:before {
height: 60px;
content: " ";
color: white;
/* bacground color */
display: block; }
3 changes: 1 addition & 2 deletions demo/bootstrap/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h4>Additional Demos</h4>
</form>
</div>
</div>
<table class="table table-bordered table-striped" fixed-header-2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th sortable="code" class="sortable">
Expand Down Expand Up @@ -238,6 +238,5 @@ <h4>Additional Demos</h4>
<script src="../../dist/pagination.min.js"></script>
<script src="../../dist/dataGrid.min.js"></script>
<script src="js/demoApp.js"></script>
<script src="../../src/js/andrey_c_changes/directive2.js"></script>

</html>
20 changes: 0 additions & 20 deletions demo/bootstrap/scss/angular-data-grid.bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,4 @@
content: "\f0dd";
vertical-align: top;
}
}

.fixed {
top: 0;
position: fixed;
width: auto;
border: none;
display: table;
z-index: 99;
tr {
background-color: #fff;
}
}


.tbody-offset:before {
height: 60px;
content:" ";
color:white; /* bacground color */
display:block;
}