After alert I want to navigate from that page on press of OK button on alert.
But navigation happens first and alert comes after that
How to resolve this issue......
Use the "fn" parameter to define a callback function (see the docs). If you want something to happen after they click OK, it should happen in that function. The alert() call itself will return immediately.
Use the "fn" parameter to define a callback function (see the docs). If you want something to happen after they click OK, it should happen in that function. The alert() call itself will return immediately.
Thanks a lot for the response....
But fn config property doesnt seems to work correctly in alert()
So i have used Ext.Msg.show() to solve my purpose...
Pls confrm if the fn parameter wrks in alert or not?