@@ -89,7 +89,7 @@ javaxt.dhtml.DataGrid = function(parent, config) {
89
89
90
90
/** Style config. See default styles in javaxt.dhtml.Table for a list of
91
91
* options. In addition to the table styles, you can also specify a
92
- * checkbox style
92
+ * checkbox style.
93
93
*/
94
94
style : defaultStyle ,
95
95
@@ -108,22 +108,25 @@ javaxt.dhtml.DataGrid = function(parent, config) {
108
108
109
109
/** If true, and if the payload is empty, will sent params as a URL
110
110
* encoded string in a POST request. Otherwise the params will be
111
- * appended to the query string in the request URL.
111
+ * appended to the query string in the request URL. Default is false.
112
112
*/
113
113
post : false ,
114
114
115
115
/** Used to specify the page size (i.e. the maximum number records to
116
- * fetch from the server at a time)
116
+ * fetch from the server at a time). Default is 50.
117
117
*/
118
118
limit : 50 ,
119
119
120
- /** If true, the server will be asked to return a total record count.
121
- * This is a legacy feature and is NOT required for pagination.
120
+ /** If true, the server will be asked to return a total record count by
121
+ * setting the "count" parameter to true when requesting the first page.
122
+ * Otherwise, the count parameter is set to false. Note that the count
123
+ * is NOT required for pagination and is not used internally in any way.
124
+ * Rather it is for informational purposes only. Default is false.
122
125
*/
123
126
count : false ,
124
127
125
128
/** If true, the grid will automatically fetch records from the server
126
- * on start-up
129
+ * on start-up. Default is false.
127
130
*/
128
131
autoload : false ,
129
132
0 commit comments