Admin controller is not being called in Magento AjaxTrying 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
How to determine what difficulty is right for the game?
Is it inappropriate for a student to attend their mentor's dissertation defense?
What does the "remote control" for a QF-4 look like?
Is it possible to run Internet Explorer on OS X El Capitan?
How much of data wrangling is a data scientist's job?
What typically incentivizes a professor to change jobs to a lower ranking university?
infared filters v nd
What would happen to a modern skyscraper if it rains micro blackholes?
What is the word for reserving something for yourself before others do?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
Can I make popcorn with any corn?
Maximum likelihood parameters deviate from posterior distributions
Did Shadowfax go to Valinor?
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
Paid for article while in US on F-1 visa?
High voltage LED indicator 40-1000 VDC without additional power supply
If human space travel is limited by the G force vulnerability, is there a way to counter G forces?
Which country benefited the most from UN Security Council vetoes?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
Horror movie about a virus at the prom; beginning and end are stylized as a cartoon
What's that red-plus icon near a text?
What's the output of a record needle playing an out-of-speed record
Does detail obscure or enhance action?
Admin controller is not being called in Magento Ajax
Trying 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
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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