Admin controller is not being called in Magento AjaxTrying to run an AJAX script from the admin area in...

Was any UN Security Council vote triple-vetoed?

Is it inappropriate for a student to attend their mentor's dissertation defense?

High voltage LED indicator 40-1000 VDC without additional power supply

A case of the sniffles

Java Casting: Java 11 throws LambdaConversionException while 1.8 does not

What does it mean to describe someone as a butt steak?

Why are electrically insulating heatsinks so rare? Is it just cost?

Can a monk's single staff be considered dual wielded, as per the Dual Wielder feat?

What doth I be?

Are astronomers waiting to see something in an image from a gravitational lens that they've already seen in an adjacent image?

How much of data wrangling is a data scientist's job?

How old can references or sources in a thesis be?

How much RAM could one put in a typical 80386 setup?

Why does Kotter return in Welcome Back Kotter?

Client team has low performances and low technical skills: we always fix their work and now they stop collaborate with us. How to solve?

Do infinite dimensional systems make sense?

How to determine what difficulty is right for the game?

Can I make popcorn with any corn?

Why is 150k or 200k jobs considered good when there's 300k+ births a month?

Languages that we cannot (dis)prove to be Context-Free

Cross compiling for RPi - error while loading shared libraries

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

How to move a thin line with the black arrow in Illustrator?



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;
}







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.










share|improve this question
















bumped to the homepage by Community 10 mins 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


















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.










share|improve this question
















bumped to the homepage by Community 10 mins 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














0












0








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 10 mins 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 10 mins 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



















  • 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










1 Answer
1






active

oldest

votes


















0














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






share|improve this answer


























  • @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












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
});


}
});














draft saved

draft discarded


















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









0














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






share|improve this answer


























  • @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
















0














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






share|improve this answer


























  • @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














0












0








0







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






share|improve this answer















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







share|improve this answer














share|improve this answer



share|improve this answer








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



















  • @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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

“%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

夢乃愛華...