-
10 Oct 2012 10:40 PM #1
Answered: Jquery Page before event (is it there in sencha?)
Answered: Jquery Page before event (is it there in sencha?)
I want to know is there a page Before Event in sencha (Just like in Jquery) for Ext.dataView.list or any component...
Just before the component paint
-
Best Answer Posted by haduki
I don't know what you want.
Code:Ext.application({ launch:function(){ console.info('before any component painted'); Ext.create('Ext.Panel',{fullscreen:true,html:'panel'}); } }); Ext.create('Ext.Panel',{ listeners:{ initialize: function(){ console.info('before component painted'); } } });
-
11 Oct 2012 12:30 AM #2
initialize
I write English by translator.
-
14 Oct 2012 9:26 PM #3
initialize is fired when the app itself is loaded.
But I want to fire an event exactly before a container gets painted on the screen
Is there any events like that???
-
14 Oct 2012 10:54 PM #4
I don't know what you want.
Code:Ext.application({ launch:function(){ console.info('before any component painted'); Ext.create('Ext.Panel',{fullscreen:true,html:'panel'}); } }); Ext.create('Ext.Panel',{ listeners:{ initialize: function(){ console.info('before component painted'); } } });I write English by translator.


Reply With Quote