Skip to content

Commit 44bbd43

Browse files
committed
Grid: Fix menugrid demo to use heightStyle: fill; fix grid to list out all options
1 parent a458ff8 commit 44bbd43

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

grid-spf/menugrid.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@
5656
}
5757
$(".paging-to").text( to );
5858
$(".paging-total").text( total );
59-
}
59+
},
60+
heightStyle: "fill"
6061
});
6162

6263
$("#pagesize").change(function() {

ui/jquery.ui.grid.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ $.widget( "ui.grid", {
1616
columns: null,
1717
dataFields: [ "type", "editor", "editorOptions", "template", "culture", "format" ],
1818
heightStyle: "auto",
19-
rowTemplate: null
19+
rowTemplate: null,
20+
source: null
2021
},
2122

2223
_create: function() {

0 commit comments

Comments
 (0)