Admin controller is not being called in Magento Ajax The 2019 Stack Overflow Developer Survey Results Are InTrying to run an AJAX script from the admin area in magentoCustom ajax not working in magento adminAdmin Button with Ajax RequestFresh install, no plug ins, fatal error on category management pageMagento modules with only Ajax ControllerMagento 2 - Ajax is not calling ControllerController action is not being called?Ajax Controller Not Redirect to login pageController observer is not triggered using ajax requestAJAX call to controller returns admin dashboard html
Realistic Alternatives to Dust: What Else Could Feed a Plankton Bloom?
What does "rabbited" mean/imply in this sentence?
Confusion about non-derivable continuous functions
The difference between dialogue marks
"What time...?" or "At what time...?" - what is more grammatically correct?
What is this 4-propeller plane?
What do the Banks children have against barley water?
Falsification in Math vs Science
I looked up a future colleague on LinkedIn before I started a job. I told my colleague about it and he seemed surprised. Should I apologize?
Access elements in std::string where positon of string is greater than its size
Output the Arecibo Message
Dual Citizen. Exited the US on Italian passport recently
How come people say “Would of”?
Is flight data recorder erased after every flight?
Why Did Howard Stark Use All The Vibranium They Had On A Prototype Shield?
If a poisoned arrow's piercing damage is reduced to 0, do you still get poisoned?
Unbreakable Formation vs. Cry of the Carnarium
Carnot-Caratheodory metric
Why is Grand Jury testimony secret?
"To split hairs" vs "To be pedantic"
In microwave frequencies, do you use a circulator when you need a (near) perfect diode?
Inversion Puzzle
Is three citations per paragraph excessive for undergraduate research paper?
Monty Hall variation
Admin controller is not being called in Magento Ajax
The 2019 Stack Overflow Developer Survey Results Are InTrying to run an AJAX script from the admin area in magentoCustom ajax not working in magento adminAdmin Button with Ajax RequestFresh install, no plug ins, fatal error on category management pageMagento modules with only Ajax ControllerMagento 2 - Ajax is not calling ControllerController action is not being called?Ajax Controller Not Redirect to login pageController observer is not triggered using ajax requestAJAX call to controller returns admin dashboard html
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am calling admin controller via ajax, but it is not being called.
Here is the controller file-
Assel/Allstock/controllers/Adminhtml/AllstockController
<?php
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action
protected function _isAllowed()
return true;
protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));
return $this;
public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();
public function productStockAction()
return "hello";
// Used for AJAX loading
public function gridAction()
$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);
?>
Here is my config.xml-
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>
Here is the template file --
adminhtml/base/default/template/assel/allstock.phtml
<script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>
I am getting this value in url variable in ajax-
"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"
I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.
magento-1.9 ajax
add a comment |
I am calling admin controller via ajax, but it is not being called.
Here is the controller file-
Assel/Allstock/controllers/Adminhtml/AllstockController
<?php
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action
protected function _isAllowed()
return true;
protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));
return $this;
public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();
public function productStockAction()
return "hello";
// Used for AJAX loading
public function gridAction()
$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);
?>
Here is my config.xml-
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>
Here is the template file --
adminhtml/base/default/template/assel/allstock.phtml
<script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>
I am getting this value in url variable in ajax-
"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"
I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.
magento-1.9 ajax
Which magento version are you using?
– Rohit Kundale
Jan 30 '16 at 10:10
Using magento v1.9
– Shashank Kumrawat
Jan 30 '16 at 10:11
Please tell full version?
– Rohit Kundale
Jan 30 '16 at 11:08
add a comment |
I am calling admin controller via ajax, but it is not being called.
Here is the controller file-
Assel/Allstock/controllers/Adminhtml/AllstockController
<?php
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action
protected function _isAllowed()
return true;
protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));
return $this;
public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();
public function productStockAction()
return "hello";
// Used for AJAX loading
public function gridAction()
$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);
?>
Here is my config.xml-
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>
Here is the template file --
adminhtml/base/default/template/assel/allstock.phtml
<script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>
I am getting this value in url variable in ajax-
"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"
I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.
magento-1.9 ajax
I am calling admin controller via ajax, but it is not being called.
Here is the controller file-
Assel/Allstock/controllers/Adminhtml/AllstockController
<?php
class Assel_Allstock_Adminhtml_AllstockController extends Mage_Adminhtml_Controller_Action
protected function _isAllowed()
return true;
protected function _initAction()
$this->loadLayout()
->_setActiveMenu('Purchase')
->_addBreadcrumb(Mage::helper('adminhtml')->__('Allstock'), Mage::helper('adminhtml')->__('Allstock'));
return $this;
public function indexAction()
$this->_initAction()
->_addContent($this->getLayout()->createBlock('allstock/adminhtml_allstock'))
->renderLayout();
public function productStockAction()
return "hello";
// Used for AJAX loading
public function gridAction()
$this->loadLayout();
$this->getResponse()->setBody(
$this->getLayout()->createBlock('allstock/adminhtml_allstock_grid')->toHtml()
);
?>
Here is my config.xml-
<?xml version="1.0" encoding="UTF-8"?>
<config>
<modules>
<Assel_Allstock>
<version>1.0.0</version>
</Assel_Allstock>
</modules>
<admin>
<routers>
<adminhtml>
<args>
<modules>
<assel_allstock after="Mage_Adminhtml">Assel_Allstock_Adminhtml</assel_allstock>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<global>
<helpers>
<allstock>
<class>Assel_Allstock_Helper</class>
</allstock>
</helpers>
<blocks>
<allstock>
<class>Assel_Allstock_Block</class>
</allstock>
</blocks>
</global>
<adminhtml>
<layout>
<updates>
<assel_allstock>
<file>assel/allstock.xml</file>
</allstock>
</updates>
</layout>
</adminhtml>
</config>
Here is the template file --
adminhtml/base/default/template/assel/allstock.phtml
<script>
var url= "<?php echo $this->getUrl('allstock/adminhtml_allstock/productStock/'); ?>";
$j('#product_search').keyup(function()
delay(function()
new Ajax.Request(url,
method: 'get',
onSuccess: function(response)debugger
,
onFailure: function(response) debugger
Element.hide('loading-mask');
alert("An error has been occured during Ajax call, please try again");
,
);
, 2000 );
);
var delay = (function()
var timer = 0;
return function(callback, ms)
clearTimeout (timer);
timer = setTimeout(callback, ms);
;
)();
</script>
I am getting this value in url variable in ajax-
"http://example.com/index.php/admin/allstock/productStock/key/NuEkv9QcEXoP4NWr/?isAjax=true"
I am getting 404 error in ajax call. Not sure why I am getting this. Can anyone help me into this.
magento-1.9 ajax
magento-1.9 ajax
edited Feb 4 '18 at 3:00
user63352
31
31
asked Jan 30 '16 at 9:26
Shashank KumrawatShashank Kumrawat
1,3161343
1,3161343
Which magento version are you using?
– Rohit Kundale
Jan 30 '16 at 10:10
Using magento v1.9
– Shashank Kumrawat
Jan 30 '16 at 10:11
Please tell full version?
– Rohit Kundale
Jan 30 '16 at 11:08
add a comment |
Which magento version are you using?
– Rohit Kundale
Jan 30 '16 at 10:10
Using magento v1.9
– Shashank Kumrawat
Jan 30 '16 at 10:11
Please tell full version?
– Rohit Kundale
Jan 30 '16 at 11:08
Which magento version are you using?
– Rohit Kundale
Jan 30 '16 at 10:10
Which magento version are you using?
– Rohit Kundale
Jan 30 '16 at 10:10
Using magento v1.9
– Shashank Kumrawat
Jan 30 '16 at 10:11
Using magento v1.9
– Shashank Kumrawat
Jan 30 '16 at 10:11
Please tell full version?
– Rohit Kundale
Jan 30 '16 at 11:08
Please tell full version?
– Rohit Kundale
Jan 30 '16 at 11:08
add a comment |
1 Answer
1
active
oldest
votes
Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:
app/code/community/Pulsestorm/Adminhello/etc/config.xml
<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>
Source: Alan Storm
@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"
– Shashank Kumrawat
Jan 30 '16 at 11:27
Login/Logout, ACL is loaded on login
– Fabian Blechschmidt
Jan 30 '16 at 12:00
I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.
– Shashank Kumrawat
Jan 30 '16 at 12:12
Can you edit your question and add the new config.xml?
– Fabian Blechschmidt
Jan 30 '16 at 12:15
yes I have edited my config.xml, please check
– Shashank Kumrawat
Jan 30 '16 at 12:22
|
show 2 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f99674%2fadmin-controller-is-not-being-called-in-magento-ajax%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:
app/code/community/Pulsestorm/Adminhello/etc/config.xml
<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>
Source: Alan Storm
@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"
– Shashank Kumrawat
Jan 30 '16 at 11:27
Login/Logout, ACL is loaded on login
– Fabian Blechschmidt
Jan 30 '16 at 12:00
I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.
– Shashank Kumrawat
Jan 30 '16 at 12:12
Can you edit your question and add the new config.xml?
– Fabian Blechschmidt
Jan 30 '16 at 12:15
yes I have edited my config.xml, please check
– Shashank Kumrawat
Jan 30 '16 at 12:22
|
show 2 more comments
Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:
app/code/community/Pulsestorm/Adminhello/etc/config.xml
<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>
Source: Alan Storm
@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"
– Shashank Kumrawat
Jan 30 '16 at 11:27
Login/Logout, ACL is loaded on login
– Fabian Blechschmidt
Jan 30 '16 at 12:00
I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.
– Shashank Kumrawat
Jan 30 '16 at 12:12
Can you edit your question and add the new config.xml?
– Fabian Blechschmidt
Jan 30 '16 at 12:15
yes I have edited my config.xml, please check
– Shashank Kumrawat
Jan 30 '16 at 12:22
|
show 2 more comments
Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:
app/code/community/Pulsestorm/Adminhello/etc/config.xml
<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>
Source: Alan Storm
Starting with MAgento 1.9.2.2 you are no longer allowed to implement your own admin routes, but instead have to use and extend the used Controller list, like this:
app/code/community/Pulsestorm/Adminhello/etc/config.xml
<config>
<!-- ... -->
<admin>
<routers>
<adminhtml>
<args>
<modules>
<Pulsestorm_Adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello</Pulsestorm_Adminhello>
</modules>
</args>
</adminhtml>
</routers>
</admin>
<!-- ... -->
</config>
Source: Alan Storm
edited Jan 30 '16 at 11:14
saravanavelu
3,05562145
3,05562145
answered Jan 30 '16 at 11:13
Fabian BlechschmidtFabian Blechschmidt
33.5k764174
33.5k764174
@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"
– Shashank Kumrawat
Jan 30 '16 at 11:27
Login/Logout, ACL is loaded on login
– Fabian Blechschmidt
Jan 30 '16 at 12:00
I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.
– Shashank Kumrawat
Jan 30 '16 at 12:12
Can you edit your question and add the new config.xml?
– Fabian Blechschmidt
Jan 30 '16 at 12:15
yes I have edited my config.xml, please check
– Shashank Kumrawat
Jan 30 '16 at 12:22
|
show 2 more comments
@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"
– Shashank Kumrawat
Jan 30 '16 at 11:27
Login/Logout, ACL is loaded on login
– Fabian Blechschmidt
Jan 30 '16 at 12:00
I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.
– Shashank Kumrawat
Jan 30 '16 at 12:12
Can you edit your question and add the new config.xml?
– Fabian Blechschmidt
Jan 30 '16 at 12:15
yes I have edited my config.xml, please check
– Shashank Kumrawat
Jan 30 '16 at 12:22
@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"
– Shashank Kumrawat
Jan 30 '16 at 11:27
@Febian, I have tried what you have suggested above but still my page shows 404 not found page on URL "example.com/index.php/admin/allstock/index/product_id/1829/key/…"
– Shashank Kumrawat
Jan 30 '16 at 11:27
Login/Logout, ACL is loaded on login
– Fabian Blechschmidt
Jan 30 '16 at 12:00
Login/Logout, ACL is loaded on login
– Fabian Blechschmidt
Jan 30 '16 at 12:00
I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.
– Shashank Kumrawat
Jan 30 '16 at 12:12
I have cleared out all CACHE and did logout then login but no effect still getting 404 error page.
– Shashank Kumrawat
Jan 30 '16 at 12:12
Can you edit your question and add the new config.xml?
– Fabian Blechschmidt
Jan 30 '16 at 12:15
Can you edit your question and add the new config.xml?
– Fabian Blechschmidt
Jan 30 '16 at 12:15
yes I have edited my config.xml, please check
– Shashank Kumrawat
Jan 30 '16 at 12:22
yes I have edited my config.xml, please check
– Shashank Kumrawat
Jan 30 '16 at 12:22
|
show 2 more comments
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f99674%2fadmin-controller-is-not-being-called-in-magento-ajax%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Which magento version are you using?
– Rohit Kundale
Jan 30 '16 at 10:10
Using magento v1.9
– Shashank Kumrawat
Jan 30 '16 at 10:11
Please tell full version?
– Rohit Kundale
Jan 30 '16 at 11:08