Skip to content

Commit 44a29b5

Browse files
committed
A few more TODO notes.
1 parent e6776b7 commit 44a29b5

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

tests/visual/grid/datasort.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
<script src="grid.js"></script>
2020
<script>
2121
$(function() {
22+
// TODO extract this and test it with large datasets (see large.html)
2223
// Just a temporary design to show what a new widget inheriting from
2324
// grid could look like.
2425
// Metadata such as column type, culture, format and sort-order probably

tests/visual/grid/grid.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ $.widget( "ui.grid", {
5353
this.options.type = type;
5454

5555
var fieldDescriptions = {};
56+
// TODO seperate column extraction from data extraction to make columns option actually optional
57+
// TODO if columns is specified but not table header exist, generate it
5658
var fields = this.options.columns = this.element.find( "th" ).map(function() {
5759
var th = $( this ),
5860
field = $( this ).data( "field" );

0 commit comments

Comments
 (0)