Skip to content

Commit

Permalink
Refactored and Restructed for a complete download. Included CSS and
Browse files Browse the repository at this point in the history
Images with a sample demo page for ready-go code.
  • Loading branch information
meetselva committed Oct 28, 2014
1 parent 1b63500 commit d99396a
Show file tree
Hide file tree
Showing 8 changed files with 197 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>fixed-table-rows-cols</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
2 changes: 2 additions & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/sample.html=UTF-8
8 changes: 4 additions & 4 deletions fixed_table_rc.css → css/fixed_table_rc.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.ft_container table { border-width: 0px; margin: 0px; border-collapse: collapse; margin: 0; outline-style: none; font-size: 0.9em; }
.ft_container table { border-width: 0px; margin: 0px; border-collapse: collapse; margin: 0; outline-style: none; font-size: 0.9em; background-color: #fff; }

.ft_container table tr th { font-weight: bold; }

Expand Down Expand Up @@ -27,6 +27,6 @@
.ft_container tbody tr.ui-widget-content, thead.ui-widget-header { background-image: none; }

.ft_container table.sorttable thead tr th { cursor: pointer; }
.ft_container table thead tr th.fx_sort_bg{ background-image: url(../images/bg.gif); background-position: right center; background-repeat: no-repeat; }
.ft_container table thead tr th.fx_sort_asc{ background-image: url(../images/asc.gif); }
.ft_container table thead tr th.fx_sort_desc{ background-image: url(../images/desc.gif); }
.ft_container table thead tr th.fx_sort_bg{ background-image: url(images/bg.gif); background-position: right center; background-repeat: no-repeat; }
.ft_container table thead tr th.fx_sort_asc{ background-image: url(images/asc.gif); }
.ft_container table thead tr th.fx_sort_desc{ background-image: url(images/desc.gif); }
Binary file added css/images/asc.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added css/images/bg.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added css/images/desc.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion fixed_table_rc.js → js/fixed_table_rc.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>.

lc.ft_c
.parent()
.css({height: cfg.height-17})
.css({height: lc.ft_container.height() - 17})
.width(lc.ft_rc.outerWidth(true) + 1);
}

Expand Down
179 changes: 179 additions & 0 deletions sample.html

Large diffs are not rendered by default.

0 comments on commit d99396a

Please sign in to comment.