Skip to content

Commit fb8473e

Browse files
committed
feat(examples): Increase BigData grid initial row count to 20k (#9163)
1 parent 46f9bf2 commit fb8473e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/grid/bigData/ControlsContainer.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ControlsContainer extends Container {
7070
labelWidth: 120,
7171
listeners : {change: 'up.onAmountRowsChange'},
7272
store : ['1000', '5000', '10000', '20000', '50000', '100000'],
73-
value : '1000',
73+
value : '20000',
7474
width : 200
7575
}, {
7676
labelText : 'Amount Columns',

examples/grid/bigData/MainStore.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ class MainStore extends Store {
1818
*/
1919
amountColumns_: 50,
2020
/**
21-
* @member {Number} amountRows_=1000
21+
* @member {Number} amountRows_=20000
2222
* @reactive
2323
*/
24-
amountRows_: 1000,
24+
amountRows_: 20000,
2525
/**
2626
* @member {Boolean} autoInitRecords=false
2727
*/

0 commit comments

Comments
 (0)