Magento MassAction grid (custom) Select All not working/not selecting. Why?Why isn't magento finding my adminhtml grid block?Grid column filter not working with two models in magento custom moduleCustom magento admin grid not displayingHow to add tracking number column to order gridSorting under admin grid is not workingCustom Admin Module Grid - Header Text Not Showing but Grid ShowingFilter in grid not working with Varien_Data_CollectionMagento - Add customer attribute to order gridMagento2 | Listing grid / “select all” option not workingMagento 2: “All in Column” does not work if actions column is not present in the grid
Is there an English equivalent for "Les carottes sont cuites", while keeping the vegetable reference?
How do aircraft making HF transmissions avoid stepping on other HF users?
Cauchy reals and Dedekind reals satisfy "the same mathematical theorems"
How can I obtain a complete list of the kinds of atomic expressions in the Wolfram Language using only the language itself?
Why do space operations use "nominal" to mean "working correctly"?
How can electric field be defined as force per charge, if the charge makes its own, singular electric field?
Pi 3 B+ no audio device found
Why is Katakana not pronounced Katagana?
How possible is a successful landing just with 1 wing?
Kepler space telescope undetected planets
How would you say "Sorry, that was a mistake on my part"?
Was Apollo 13 radio blackout on reentry longer than expected?
When does Fisher's "go get more data" approach make sense?
Is this artwork (used in a video game) real?
How to honestly answer questions from a girlfriend like "How did you find this place" without giving the impression I'm always talking about my exes?
Why did Steve Rogers choose this character in Endgame?
Is the purpose of sheet music to be played along to? Or a guide for learning and reference during playing?
Did 007 exist before James Bond?
Sending a photo of my bank account card to the future employer
At which point can a system be compromised when downloading archived data from an untrusted source?
How can I help our ranger feel special about her beast companion?
When designing an adventure, how can I ensure a continuous player experience in a setting that's likely to favor TPKs?
What were the problems on the Apollo 11 lunar module?
What would be the safest way to drop thousands of small, hard objects from a typical, high wing, GA airplane?
Magento MassAction grid (custom) Select All not working/not selecting. Why?
Why isn't magento finding my adminhtml grid block?Grid column filter not working with two models in magento custom moduleCustom magento admin grid not displayingHow to add tracking number column to order gridSorting under admin grid is not workingCustom Admin Module Grid - Header Text Not Showing but Grid ShowingFilter in grid not working with Varien_Data_CollectionMagento - Add customer attribute to order gridMagento2 | Listing grid / “select all” option not workingMagento 2: “All in Column” does not work if actions column is not present in the grid
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Magento MassAction grid (custom) Select All not working. Why?
In grid we click grid_massactionJsObject.selectAll()
(select all link)
Question: how can we make select all work again?
Grid.php is set-up like this
protected function _prepareMassaction()
{
$this->setMassactionIdField('item_id');
$this->getMassactionBlock()->setFormFieldName('item_ids');
$this->getMassactionBlock()->setUseSelectAll(true);
Select all does nothing
adminhtml grid controllers
add a comment |
Magento MassAction grid (custom) Select All not working. Why?
In grid we click grid_massactionJsObject.selectAll()
(select all link)
Question: how can we make select all work again?
Grid.php is set-up like this
protected function _prepareMassaction()
{
$this->setMassactionIdField('item_id');
$this->getMassactionBlock()->setFormFieldName('item_ids');
$this->getMassactionBlock()->setUseSelectAll(true);
Select all does nothing
adminhtml grid controllers
add a comment |
Magento MassAction grid (custom) Select All not working. Why?
In grid we click grid_massactionJsObject.selectAll()
(select all link)
Question: how can we make select all work again?
Grid.php is set-up like this
protected function _prepareMassaction()
{
$this->setMassactionIdField('item_id');
$this->getMassactionBlock()->setFormFieldName('item_ids');
$this->getMassactionBlock()->setUseSelectAll(true);
Select all does nothing
adminhtml grid controllers
Magento MassAction grid (custom) Select All not working. Why?
In grid we click grid_massactionJsObject.selectAll()
(select all link)
Question: how can we make select all work again?
Grid.php is set-up like this
protected function _prepareMassaction()
{
$this->setMassactionIdField('item_id');
$this->getMassactionBlock()->setFormFieldName('item_ids');
$this->getMassactionBlock()->setUseSelectAll(true);
Select all does nothing
adminhtml grid controllers
adminhtml grid controllers
asked Jan 6 '17 at 7:02
snh_nlsnh_nl
3,07310 gold badges47 silver badges107 bronze badges
3,07310 gold badges47 silver badges107 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Needed to apply this fix so setMassactionIdField was respected
https://github.com/OpenMage/magento-lts/pull/150
add a comment |
I have override
Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract class
and i just removed
var
from the
getJavaScript()
function and the issue is solved.
add a comment |
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%2f153454%2fmagento-massaction-grid-custom-select-all-not-working-not-selecting-why%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Needed to apply this fix so setMassactionIdField was respected
https://github.com/OpenMage/magento-lts/pull/150
add a comment |
Needed to apply this fix so setMassactionIdField was respected
https://github.com/OpenMage/magento-lts/pull/150
add a comment |
Needed to apply this fix so setMassactionIdField was respected
https://github.com/OpenMage/magento-lts/pull/150
Needed to apply this fix so setMassactionIdField was respected
https://github.com/OpenMage/magento-lts/pull/150
answered Jan 8 '17 at 21:08
snh_nlsnh_nl
3,07310 gold badges47 silver badges107 bronze badges
3,07310 gold badges47 silver badges107 bronze badges
add a comment |
add a comment |
I have override
Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract class
and i just removed
var
from the
getJavaScript()
function and the issue is solved.
add a comment |
I have override
Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract class
and i just removed
var
from the
getJavaScript()
function and the issue is solved.
add a comment |
I have override
Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract class
and i just removed
var
from the
getJavaScript()
function and the issue is solved.
I have override
Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract class
and i just removed
var
from the
getJavaScript()
function and the issue is solved.
answered Jul 9 at 9:43
Mohammad MaheboobMohammad Maheboob
997 bronze badges
997 bronze badges
add a comment |
add a comment |
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%2f153454%2fmagento-massaction-grid-custom-select-all-not-working-not-selecting-why%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