{"id":137738,"date":"2018-08-09T16:49:21","date_gmt":"2018-08-09T16:49:21","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=137738"},"modified":"2018-08-09T16:49:21","modified_gmt":"2018-08-09T16:49:21","slug":"invalid-attribute-error-in-admin-panel-grid","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/","title":{"rendered":"Invalid attribute error in admin panel grid"},"content":{"rendered":"<p>Sometimes you might face an error &#8220;Invalid Attribute&#8221; in admin panel grid during filtering or sorting after you have joined product (for example) with your table.<\/p>\n<p>Suppose your join is something like this-<\/p>\n<pre class=\"brush:php\">protected function _prepareCollection()\r\n{\r\n      $collection = Mage::getModel('catalog\/product')-&gt;getCollection();\r\n      $prefix = Mage::getConfig()-&gt;getTablePrefix();\r\n      $collection-&gt;getSelect()-&gt;joinLeft(\r\n        array('map' =&gt; $prefix.\"webkul_product_demo_mapping\"),\r\n        'map.magento_id = e.entity_id',\r\n        array('magento_id','status','created_at')\r\n      );\r\n      $this-&gt;setCollection($collection);\r\n      return parent::_prepareCollection();\r\n}\r\n<\/pre>\n<p>You are displaying your grid column like this<\/p>\n<pre class=\"brush:php\">$this-&gt;addColumn('magento_id', array(\r\n    'header'    =&gt; Mage::helper('webkul')-&gt;__('Magento Id'),\r\n    'align'     =&gt; 'center',\r\n    'index'     =&gt; 'magento_id',\r\n));\r\n\r\n<\/pre>\n<p>Now if you are getting &#8220;Invalid Attribute&#8221; error during searching or sorting your column magento id, it is because magento thinks <em>magento_id <\/em>you are calling an attribute of product but as <em>magento_id\u00a0<\/em>is not an attribute of product so it displays an error.<\/p>\n<p>So what you need to do is use the following code &#8211;<\/p>\n<p>&nbsp;<\/p>\n<pre class=\"brush:php\">$this-&gt;addColumn('magento_id', array(\r\n    'header'    =&gt; Mage::helper('webkul')-&gt;__('Magento Id'),\r\n    'align'     =&gt; 'center',\r\n    'index'     =&gt; 'magento_id',\r\n    'filter_condition_callback' =&gt; array($this, 'filterMagentoId'),\r\n    'order_callback'            =&gt; array($this, 'orderMagentoId')\r\n));\r\n\r\n<\/pre>\n<p>Here two functions are called.<\/p>\n<h4>For filter<\/h4>\n<pre class=\"brush:php\">protected function filterMagentoId($collection, $column)\r\n{\r\n    if ($column-&gt;getFilter()-&gt;getValue() === null) {\r\n        return;\r\n    }\r\n    $collection-&gt;getSelect()-&gt;where('map.magento_id like ?', '%' . $column-&gt;getFilter()-&gt;getValue() . '%');\r\n}\r\n<\/pre>\n<h4>For sorting<\/h4>\n<pre class=\"brush:php\">protected function orderMagentoId($collection, $column)\r\n{\r\n    $collection-&gt;getSelect()-&gt;order($column-&gt;getIndex() . ' ' . strtoupper($column-&gt;getDir()));\r\n}\r\n<\/pre>\n<p>That&#8217;s it.<\/p>\n<p>Happy coding \ud83d\ude42<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes you might face an error &#8220;Invalid Attribute&#8221; in admin panel grid during filtering or sorting after you have joined product (for example) with your table. Suppose your join is something like this- protected function _prepareCollection() { $collection = Mage::getModel(&#8216;catalog\/product&#8217;)-&gt;getCollection(); $prefix = Mage::getConfig()-&gt;getTablePrefix(); $collection-&gt;getSelect()-&gt;joinLeft( array(&#8216;map&#8217; =&gt; $prefix.&#8221;webkul_product_demo_mapping&#8221;), &#8216;map.magento_id = e.entity_id&#8217;, array(&#8216;magento_id&#8217;,&#8217;status&#8217;,&#8217;created_at&#8217;) ); $this-&gt;setCollection($collection); return parent::_prepareCollection(); <a href=\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":164,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-137738","post","type-post","status-publish","format-standard","hentry","category-magento"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Invalid attribute error in admin panel grid - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Invalid Attribute error during filtering or sorting when table join with product in admin panel grid magento 1\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Invalid attribute error in admin panel grid - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Invalid Attribute error during filtering or sorting when table join with product in admin panel grid magento 1\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-09T16:49:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Paul Dutta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Dutta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\"},\"author\":{\"name\":\"Paul Dutta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/41a945ef9d13b037b8483b2340ae6748\"},\"headline\":\"Invalid attribute error in admin panel grid\",\"datePublished\":\"2018-08-09T16:49:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\"},\"wordCount\":120,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"articleSection\":[\"magento\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\",\"url\":\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\",\"name\":\"Invalid attribute error in admin panel grid - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2018-08-09T16:49:21+00:00\",\"description\":\"Invalid Attribute error during filtering or sorting when table join with product in admin panel grid magento 1\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Invalid attribute error in admin panel grid\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/41a945ef9d13b037b8483b2340ae6748\",\"name\":\"Paul Dutta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Paul Dutta\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/paul-dutta287\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Invalid attribute error in admin panel grid - Webkul Blog","description":"Invalid Attribute error during filtering or sorting when table join with product in admin panel grid magento 1","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/","og_locale":"en_US","og_type":"article","og_title":"Invalid attribute error in admin panel grid - Webkul Blog","og_description":"Invalid Attribute error during filtering or sorting when table join with product in admin panel grid magento 1","og_url":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-08-09T16:49:21+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Paul Dutta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Paul Dutta","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/"},"author":{"name":"Paul Dutta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/41a945ef9d13b037b8483b2340ae6748"},"headline":"Invalid attribute error in admin panel grid","datePublished":"2018-08-09T16:49:21+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/"},"wordCount":120,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"articleSection":["magento"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/","url":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/","name":"Invalid attribute error in admin panel grid - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2018-08-09T16:49:21+00:00","description":"Invalid Attribute error during filtering or sorting when table join with product in admin panel grid magento 1","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/invalid-attribute-error-in-admin-panel-grid\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Invalid attribute error in admin panel grid"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/41a945ef9d13b037b8483b2340ae6748","name":"Paul Dutta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/57d5fe0b5f0a7db7ce6bf447f403ff0c10c3d2e234e4a8398a8fe1daa71888b2?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Paul Dutta"},"url":"https:\/\/webkul.com\/blog\/author\/paul-dutta287\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/137738","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/164"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=137738"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/137738\/revisions"}],"predecessor-version":[{"id":424324,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/137738\/revisions\/424324"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=137738"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=137738"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=137738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}