In ExtJs we have a page load event named Ext.onReady() which is called after window.onload as it is registered to onload and than called. so basicly last event we can find is Ext.onReady().
The problem is that I have several Ext.onReady() for a bussiness reqiurment which we can’t change. I have ExtJs TabbedPanel which is been reandered to the page which is in the last Ext.onReady() of the page.
What I want is to register some events on TabbedPanel after it is rendered to the page. Assume that you don’t have control over the TabbedPanel’s render event as well as you can’t create onReady after last onReady of the page.
Thanks for your replys friends. I have solved the issue.. For your information and for the your information m posting solution
I have created a callback method in java. which means it will be called from a perticular other function is called. I just checked the function which is taking most time to excetue and at last of that function created callback.
Problem is solved thanks.. 🙂