Filtering custom value from rendering column issue in Magento 1Add Column to a grid (observer) - Column ‘store_id’ in where clause is ambiguous issueMagento grid default filter condition exclude certain field valueAdmin Order Grid overridden with custom fields cannot be filteredVarien Data collection toOptionArray does not pass arguments to protected method?How to add tracking number column to order gridHow to add filtering to custom table field column in Customers admin grid in Magento2?Magento 1 : Filtering / Paging / Sorting with Varien_Data_CollectionMagento 2 - custom admin grid field - error when sorting or filteringfilter_condition_callback function not called in observerMagento - Add customer attribute to order grid

Are soroban (Japanese abacus) classes worth doing?

How to test soql with For Update statement

Should I worry about having my credit pulled multiple times while car shopping?

What made the Ancient One do this in Endgame?

Why can't we feel the Earth's revolution?

Must a CPU have a GPU if the motherboard provides a display port (when there isn't any separate video card)?

The last tree in the Universe

Should I email my professor to clear up a (possibly very irrelevant) awkward misunderstanding?

My parents claim they cannot pay for my college education; what are my options?

How can Caller ID be faked?

Can I appeal credit ding if ex-wife is responsible for paying mortgage?

Basic power tool set for Home repair and simple projects

What things do I only get a limited opportunity to take photos of?

Looking for an iPhone app for working out chess problems

How could I create a situation in which a PC has to make a saving throw or be forced to pet a dog?

Can Dive Down protect a creature against Pacifism?

Dedicated bike GPS computer over smartphone

How to know whether to write accidentals as sharps or flats?

Reflecting Telescope Blind Spot?

Interview was just a one hour panel. Got an offer the next day; do I accept or is this a red flag?

Converting 3x7 to a 1x7. Is it possible with only existing parts?

Using roof rails to set up hammock

Struggling to present results from long papers in short time slots

Can a 40amp breaker be used safely and without issue with a 40amp device on 6AWG wire?



Filtering custom value from rendering column issue in Magento 1


Add Column to a grid (observer) - Column ‘store_id’ in where clause is ambiguous issueMagento grid default filter condition exclude certain field valueAdmin Order Grid overridden with custom fields cannot be filteredVarien Data collection toOptionArray does not pass arguments to protected method?How to add tracking number column to order gridHow to add filtering to custom table field column in Customers admin grid in Magento2?Magento 1 : Filtering / Paging / Sorting with Varien_Data_CollectionMagento 2 - custom admin grid field - error when sorting or filteringfilter_condition_callback function not called in observerMagento - Add customer attribute to order grid






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I created my own collection with custom data. This is part from my grid class:



 my grid class extends Mage_Adminhtml_Block_Widget_Grid
...
$this->setCollection($collection);
array_walk($data['data'], function($order) use (&$collection)
$collection->addItem(new Varien_Object([
'store_id' => $order['store_reference'],
'shipping_date' => $order['shipping_date'],
'order_reference' => $order['order_reference'],
'customer_reference' => $order['customer_reference'],
'updated_at' => $order['updated_at'],
'shipping_fullname' => "$order['shipping_firstname'] $order['shipping_middlename'] $order['shipping_lastname']",
]));
);
$collection->setCurPage($page);
$collection->setLastPageNumber($lastPage);
$collection->setSize($lastPage * $limit);

$this->setCollection($collection);
return $this;


where $collection is an instance of class which extends Varien_Data_Collection. The content of that class is:



 protected $hardSetSize = 1;
protected $setLastPageNumber = 1;
/**
* @param int $size
*/
public function setSize(int $size)

$this->hardSetSize = $size;

/**
* Retrieve collection all items count
*
* @return int
*/
public function getSize()

return $this->hardSetSize;


public function setLastPageNumber(int $lastPage)

$this->setLastPageNumber = $lastPage;


public function getLastPageNumber()

return $this->setLastPageNumber;



My grid is displayed, I got my custom data. But there is filtering problem.
I created my column like:



 $this->addColumn('store_id', [
'header' => Mage::helper('ffm_fulfillment')->__('Store'),
'align' => 'left',
'index' => 'store_id',
'renderer' => 'Mynamespace_Mymodule_Block_Adminhtml_Test_Grid_Renderer_Store',
'filter_condition_callback' => [$this, '_storeFilter'],
]);


I got the render data, which are store ids from 1-20. I want to filter them. I created my _storeFilter function. What should I do next ? I put a message and the exit() in my function and on filtering I do not get my message.



protected function _storeFilter($collection, $column)

$value = $column->getFilter()->getValue();
echo 'Test'; exit();










share|improve this question




























    1















    I created my own collection with custom data. This is part from my grid class:



     my grid class extends Mage_Adminhtml_Block_Widget_Grid
    ...
    $this->setCollection($collection);
    array_walk($data['data'], function($order) use (&$collection)
    $collection->addItem(new Varien_Object([
    'store_id' => $order['store_reference'],
    'shipping_date' => $order['shipping_date'],
    'order_reference' => $order['order_reference'],
    'customer_reference' => $order['customer_reference'],
    'updated_at' => $order['updated_at'],
    'shipping_fullname' => "$order['shipping_firstname'] $order['shipping_middlename'] $order['shipping_lastname']",
    ]));
    );
    $collection->setCurPage($page);
    $collection->setLastPageNumber($lastPage);
    $collection->setSize($lastPage * $limit);

    $this->setCollection($collection);
    return $this;


    where $collection is an instance of class which extends Varien_Data_Collection. The content of that class is:



     protected $hardSetSize = 1;
    protected $setLastPageNumber = 1;
    /**
    * @param int $size
    */
    public function setSize(int $size)

    $this->hardSetSize = $size;

    /**
    * Retrieve collection all items count
    *
    * @return int
    */
    public function getSize()

    return $this->hardSetSize;


    public function setLastPageNumber(int $lastPage)

    $this->setLastPageNumber = $lastPage;


    public function getLastPageNumber()

    return $this->setLastPageNumber;



    My grid is displayed, I got my custom data. But there is filtering problem.
    I created my column like:



     $this->addColumn('store_id', [
    'header' => Mage::helper('ffm_fulfillment')->__('Store'),
    'align' => 'left',
    'index' => 'store_id',
    'renderer' => 'Mynamespace_Mymodule_Block_Adminhtml_Test_Grid_Renderer_Store',
    'filter_condition_callback' => [$this, '_storeFilter'],
    ]);


    I got the render data, which are store ids from 1-20. I want to filter them. I created my _storeFilter function. What should I do next ? I put a message and the exit() in my function and on filtering I do not get my message.



    protected function _storeFilter($collection, $column)

    $value = $column->getFilter()->getValue();
    echo 'Test'; exit();










    share|improve this question
























      1












      1








      1








      I created my own collection with custom data. This is part from my grid class:



       my grid class extends Mage_Adminhtml_Block_Widget_Grid
      ...
      $this->setCollection($collection);
      array_walk($data['data'], function($order) use (&$collection)
      $collection->addItem(new Varien_Object([
      'store_id' => $order['store_reference'],
      'shipping_date' => $order['shipping_date'],
      'order_reference' => $order['order_reference'],
      'customer_reference' => $order['customer_reference'],
      'updated_at' => $order['updated_at'],
      'shipping_fullname' => "$order['shipping_firstname'] $order['shipping_middlename'] $order['shipping_lastname']",
      ]));
      );
      $collection->setCurPage($page);
      $collection->setLastPageNumber($lastPage);
      $collection->setSize($lastPage * $limit);

      $this->setCollection($collection);
      return $this;


      where $collection is an instance of class which extends Varien_Data_Collection. The content of that class is:



       protected $hardSetSize = 1;
      protected $setLastPageNumber = 1;
      /**
      * @param int $size
      */
      public function setSize(int $size)

      $this->hardSetSize = $size;

      /**
      * Retrieve collection all items count
      *
      * @return int
      */
      public function getSize()

      return $this->hardSetSize;


      public function setLastPageNumber(int $lastPage)

      $this->setLastPageNumber = $lastPage;


      public function getLastPageNumber()

      return $this->setLastPageNumber;



      My grid is displayed, I got my custom data. But there is filtering problem.
      I created my column like:



       $this->addColumn('store_id', [
      'header' => Mage::helper('ffm_fulfillment')->__('Store'),
      'align' => 'left',
      'index' => 'store_id',
      'renderer' => 'Mynamespace_Mymodule_Block_Adminhtml_Test_Grid_Renderer_Store',
      'filter_condition_callback' => [$this, '_storeFilter'],
      ]);


      I got the render data, which are store ids from 1-20. I want to filter them. I created my _storeFilter function. What should I do next ? I put a message and the exit() in my function and on filtering I do not get my message.



      protected function _storeFilter($collection, $column)

      $value = $column->getFilter()->getValue();
      echo 'Test'; exit();










      share|improve this question














      I created my own collection with custom data. This is part from my grid class:



       my grid class extends Mage_Adminhtml_Block_Widget_Grid
      ...
      $this->setCollection($collection);
      array_walk($data['data'], function($order) use (&$collection)
      $collection->addItem(new Varien_Object([
      'store_id' => $order['store_reference'],
      'shipping_date' => $order['shipping_date'],
      'order_reference' => $order['order_reference'],
      'customer_reference' => $order['customer_reference'],
      'updated_at' => $order['updated_at'],
      'shipping_fullname' => "$order['shipping_firstname'] $order['shipping_middlename'] $order['shipping_lastname']",
      ]));
      );
      $collection->setCurPage($page);
      $collection->setLastPageNumber($lastPage);
      $collection->setSize($lastPage * $limit);

      $this->setCollection($collection);
      return $this;


      where $collection is an instance of class which extends Varien_Data_Collection. The content of that class is:



       protected $hardSetSize = 1;
      protected $setLastPageNumber = 1;
      /**
      * @param int $size
      */
      public function setSize(int $size)

      $this->hardSetSize = $size;

      /**
      * Retrieve collection all items count
      *
      * @return int
      */
      public function getSize()

      return $this->hardSetSize;


      public function setLastPageNumber(int $lastPage)

      $this->setLastPageNumber = $lastPage;


      public function getLastPageNumber()

      return $this->setLastPageNumber;



      My grid is displayed, I got my custom data. But there is filtering problem.
      I created my column like:



       $this->addColumn('store_id', [
      'header' => Mage::helper('ffm_fulfillment')->__('Store'),
      'align' => 'left',
      'index' => 'store_id',
      'renderer' => 'Mynamespace_Mymodule_Block_Adminhtml_Test_Grid_Renderer_Store',
      'filter_condition_callback' => [$this, '_storeFilter'],
      ]);


      I got the render data, which are store ids from 1-20. I want to filter them. I created my _storeFilter function. What should I do next ? I put a message and the exit() in my function and on filtering I do not get my message.



      protected function _storeFilter($collection, $column)

      $value = $column->getFilter()->getValue();
      echo 'Test'; exit();







      magento-1 grid renderer






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 29 '17 at 13:14









      Attila NaghiAttila Naghi

      1,50222145




      1,50222145




















          1 Answer
          1






          active

          oldest

          votes


















          0














          I have checked your mentioned code and found you have wrong defined 'filter_condition_callback' => [$this, '_storeFilter'],



          From
          'filter_condition_callback' => [$this, '_storeFilter'],
          To
          'filter_condition_callback' => array($this, '_storeFilter'),


          For more information you can follow the below post
          https://stackoverflow.com/questions/29732847/how-to-create-filter-condition-callback-on-custom-renderer-in-magento-admin-grid






          share|improve this answer























          • Nope, is not that I tried both ways, still did not get my message :) . Thank you

            – Attila Naghi
            Aug 29 '17 at 13:41











          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%2f191053%2ffiltering-custom-value-from-rendering-column-issue-in-magento-1%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














          I have checked your mentioned code and found you have wrong defined 'filter_condition_callback' => [$this, '_storeFilter'],



          From
          'filter_condition_callback' => [$this, '_storeFilter'],
          To
          'filter_condition_callback' => array($this, '_storeFilter'),


          For more information you can follow the below post
          https://stackoverflow.com/questions/29732847/how-to-create-filter-condition-callback-on-custom-renderer-in-magento-admin-grid






          share|improve this answer























          • Nope, is not that I tried both ways, still did not get my message :) . Thank you

            – Attila Naghi
            Aug 29 '17 at 13:41















          0














          I have checked your mentioned code and found you have wrong defined 'filter_condition_callback' => [$this, '_storeFilter'],



          From
          'filter_condition_callback' => [$this, '_storeFilter'],
          To
          'filter_condition_callback' => array($this, '_storeFilter'),


          For more information you can follow the below post
          https://stackoverflow.com/questions/29732847/how-to-create-filter-condition-callback-on-custom-renderer-in-magento-admin-grid






          share|improve this answer























          • Nope, is not that I tried both ways, still did not get my message :) . Thank you

            – Attila Naghi
            Aug 29 '17 at 13:41













          0












          0








          0







          I have checked your mentioned code and found you have wrong defined 'filter_condition_callback' => [$this, '_storeFilter'],



          From
          'filter_condition_callback' => [$this, '_storeFilter'],
          To
          'filter_condition_callback' => array($this, '_storeFilter'),


          For more information you can follow the below post
          https://stackoverflow.com/questions/29732847/how-to-create-filter-condition-callback-on-custom-renderer-in-magento-admin-grid






          share|improve this answer













          I have checked your mentioned code and found you have wrong defined 'filter_condition_callback' => [$this, '_storeFilter'],



          From
          'filter_condition_callback' => [$this, '_storeFilter'],
          To
          'filter_condition_callback' => array($this, '_storeFilter'),


          For more information you can follow the below post
          https://stackoverflow.com/questions/29732847/how-to-create-filter-condition-callback-on-custom-renderer-in-magento-admin-grid







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 29 '17 at 13:32









          shyamshyam

          31117




          31117












          • Nope, is not that I tried both ways, still did not get my message :) . Thank you

            – Attila Naghi
            Aug 29 '17 at 13:41

















          • Nope, is not that I tried both ways, still did not get my message :) . Thank you

            – Attila Naghi
            Aug 29 '17 at 13:41
















          Nope, is not that I tried both ways, still did not get my message :) . Thank you

          – Attila Naghi
          Aug 29 '17 at 13:41





          Nope, is not that I tried both ways, still did not get my message :) . Thank you

          – Attila Naghi
          Aug 29 '17 at 13:41

















          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%2f191053%2ffiltering-custom-value-from-rendering-column-issue-in-magento-1%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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form