1

Using sencha store filter, at very first time it will set height for dataview. After filtering, Its set to same height and i am getting tis height issue only with iOS not in android. Whether i have to set dynamic height or any global fix is there for iOS

_filterChange: function(sf, newValue, oldValue, eOpts) {
    var me = this;
    var MyStore = Ext.getStore('MyStore');
    MyStore.clearFilter();
    var i=0;
    var MyStore = Ext.getStore('MyStore');
    MyStore.filterBy(

        function(record) {
                stateID = record.get('STATE_ID');
            if (stateID === newValue) {
                console.log(i++);

              return record;
            } else {
                MyStore.clearFilter();
            }    


        });
 },
RED.Skull
  • 1,696
  • 3
  • 24
  • 49

1 Answers1

0

I found solution

    .myList .x-scroll-scroller{
     position:relative !important;
     -webkit-overflow-scrolling:touch !important;
     overflow-y:scroll !important;
     }
RED.Skull
  • 1,696
  • 3
  • 24
  • 49