Sencha Touch 2.1 List using ui = round has problems with styling
When using ui = normal in the Ext.dataview.List control, it styles properly. When using ui = round in the same control, the selected style is not done properly. It was working in 2.0.x release. I'm thinking that due to the changes in this control, this particular ui style was missed. What is the proper fix?
round grouped list display bug
There are even more styling bugs when using 'round' ui in grouped lists.
If your first group in the list has only one item, that group will be displayed attached to the next group (without any bottom padding) because the CSS property .x-list-footer-wrap is not added to the item. The bug is in the calculation of the list of footerIndices in the function findGroupHeaderIndices in the file /touch/src/dataview/List.js
You can add the following code in the funciton findGroupHeaderIndices to calculate the footerIndices correctly:
lastGroupItem = (groups[i].children.length) - 1;
lastGroupedRecord = groups[i].children[lastGroupItem];
storeIndex = store.indexOf(lastGroupedRecord);
footerIndices[storeIndex] = true;
I want to know when it was fixed.