Skip to content

Commit

Permalink
Merge pull request #1924 from GordonSmith/GH-1920
Browse files Browse the repository at this point in the history
GH-1920 DUD Pagination Settings Ignored
  • Loading branch information
GordonSmith authored Aug 12, 2016
2 parents 7b5f390 + 9bce488 commit 0a0273c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/marshaller/HipieDDL.js
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,6 @@
.legendPosition_default("none")
.showChartSelect_default(false)
.chartType_default("TABLE")
.chartTypeDefaults({ pagination: true })
;
});
break;
Expand Down
2 changes: 1 addition & 1 deletion src/other/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Table.prototype._class += " other_Table";

Table.prototype.publish("renderHtmlDataCells", false, "boolean", "enable or disable HTML within cells",null,{tags:["Private"]});
Table.prototype.publish("pagination", false, "boolean", "Enable or disable pagination",null,{tags:["Private"]});
Table.prototype.publish("pagination", true, "boolean", "Enable or disable pagination",null,{tags:["Private"]});
Table.prototype.publish("paginationLimit", null, "number", "Maximum number of rows allowed before pagination defaults to on",null,{tags:["Private"]});
Table.prototype.publishProxy("itemsPerPage", "_paginator");
Table.prototype.publishProxy("pageNumber", "_paginator", "pageNumber",1);
Expand Down

0 comments on commit 0a0273c

Please sign in to comment.