Mobile Web Development Archives - GeekTantra https://www.geektantra.com/tag/mobile-web-development/ yet another geek's blog Mon, 18 Nov 2019 08:09:33 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.3 Adding Before & After Filters in Sencha Touch MVC Controllers https://www.geektantra.com/2011/11/adding-before-after-filters-in-sencha-touch-mvc-controllers/?utm_source=rss&utm_medium=rss&utm_campaign=adding-before-after-filters-in-sencha-touch-mvc-controllers Fri, 18 Nov 2011 03:31:44 +0000 http://www.geektantra.com/?p=313 BeforeFilters in RoR are a great way to manage controller accesses or do execute any other specific controller action triggers. Here is a simple way of mimicking this great RoR feature on Sencha Touch MVC. Create a file named `app/controllers/Controllers.js` with the following content: Ext.Dispatcher.on('before-dispatch', function(interaction) { if(Ext.isFunction(interaction.controller.beforeFilter)) { return interaction.controller.beforeFilter.call(); }; return true; }); […]

The post Adding Before & After Filters in Sencha Touch MVC Controllers appeared first on GeekTantra.

]]>