Currently, I am working on a Sencha Touch application that utilizes lists. In one particular list, we have approximately 400 different items and I have included the infinite: true
parameter to enhance the performance of the view.
However, I have noticed a peculiar behavior where the items seem to be overlapping with one another.
https://i.sstatic.net/vzMFO.png
This is the snippet of my code:
xtype : 'list',
cls : 'mweb-list',
useComponents: true,
maxItemCache: 30,
useHeaders : false,
infinite : true,
The issue arises when I add the infinite
parameter to the configuration.
The component cls does not contain any CSS rules. Here is an overview of the extended component:
Ext.define('xx.components.list.BaseListComponent', {
extend: 'Ext.dataview.List',
xtype : 'mwebBaseListComponent',
config: {
cls : 'mweb-list',
useComponents: true,
emptyText : '',
loadingText : '',
useHeaders : false
}
});
Any insights or suggestions would be greatly appreciated!
Thank you for your help in advance.