There is a valid controller named 'networkcntrlr' with action 'showProfileDetails'. Does that action get fired? Have you set a breakpoint to follow the Ext.dispatch call to see where it breaks?
The method showProfileDetails is getting fired.
But the redirection is not happening.
It is giving the error as "Uncaught TypeError: Cannot read property 'layout' of undefined "
This is the error it is giving TypeError: Result of expression 'config' [undefined] is not an object.
config is undefined.
The code for showProfileDetails function is
showProfileDetails: function (options) {
console.log('SHOW PROFILE DETAILS'); //This statement is getting printed in the Log.
if (!Ext.isDefined(options.container)) {
Ext.Msg.alert("Error", "This method required the container property to be set.");
return;
}
if (!Ext.isDefined(options.shopSeqId)) {
Ext.Msg.alert("Error", "This method required the shopSeqId property to be set.");
return;
}