Since I decided to learn how to develop a website based on Adobe flex, I will gather many useful resources as much as I can. 1. Live Flex 3 training videos created by Mike Lively of Northern Kentucky University Live Flex 3 Training Part 1 (Building a Website) – http://www.youtube.com/watch?v=xrjmImF0CKE Live Flex 3 Training Part…
Tag: sencha-touch-list-paging
Only show Paging Toolbar when appropriate
One of Sencha User, Joel, pointed out one of problems in Sencha Touch ListPagingPlugin that display ‘Load more…’ message even if a result gave less rows than paging size. Below code he suggested will fix the problem: Ext.override(Ext.plugins.ListPagingPlugin, { onListUpdate : function() { if (this.list.store && this.list.store.data.length < (this.list.store.currentPage * this.list.store.pageSize)) { if (!this.rendered) {…