我想在 sencha touch 中对我的商店进行分类,遇到问题
Posted
技术标签:
【中文标题】我想在 sencha touch 中对我的商店进行分类,遇到问题【英文标题】:I want to sort my store in sencha touch facing issues 【发布时间】:2017-09-01 15:21:48 【问题描述】:我的对象中有很多字段,例如 id, trackName , mtp , mtpDisplay 我正在使用下面的存储方法按 mtp 字段对数据进行排序。但是它的 mtpDisplay 设置为 0。
renderTodayEntriesView: function (startIndex, endIndex)
entriesStore = Ext.getStore('TodaysEntryTrackStore');
entriesStore.data.sort('mtp','ASC');
// After this mtpDisplay is settingt to 0
【问题讨论】:
【参考方案1】:您的问题与此类似:extjs - Sort store alphanumerically and case insensitively。在第一个答案上实现该函数,并在需要对数据进行排序时调用它。
【讨论】:
以上是关于我想在 sencha touch 中对我的商店进行分类,遇到问题的主要内容,如果未能解决你的问题,请参考以下文章