Extjs 6.2.0
Have this panel
Ext.create('Ext.grid.Panel', {
region: 'center',
padding: 5,
reserveScrollbar: false,
scrollable: true,
columnLines: false,
rowLines: false,
disableSelection: true,
viewConfig: {
stripeRows: false,
trackOver: false,
preserveScrollOnRefresh: true
},
store: 'chatmessagesstore',
hideHeaders: true,
.....
and one column with renderer
Grid in the Ext.form.Panel with layout border. And Ext.form.Panel in window with layout FIT. Store is MemoryStore
I add record to store and then it showing in grid. But if i add more then 50 record to store i see blank space at the buttom of grid. In last Chrome I see blank space. In last "Sputnik" browser (Russian) I do not see blank space
I think that it's wrong scrollbar calculation. But how to solve? My head is broken )