{"id":38620,"date":"2016-01-22T10:10:45","date_gmt":"2016-01-22T10:10:45","guid":{"rendered":"http:\/\/webkul.com\/blog\/?p=38620"},"modified":"2023-03-01T11:41:03","modified_gmt":"2023-03-01T11:41:03","slug":"magento2-display-grid-tab-magento-admin","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/","title":{"rendered":"Magento2 &#8211; Display Grid in Tab Magento Admin"},"content":{"rendered":"\n<p>Here we will see how to display grid in tab in admin.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Display Grid in Tab<\/h3>\n\n\n\n<p>To display grid in tab first of all Create Tabs.php block file in folder Webkul\\Hello\\Block\\Adminhtml\\Hello\\Edit<\/p>\n\n\n\n<p>This file is created to add tabs in edit form.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">&lt;?php\n\t\/**\n\t * Webkul Hello Hello Edit Tabs Admin Block\n\t *\n\t * @category    Webkul\n\t * @package     Webkul_Hello\n\t * @author      Webkul Software Private Limited\n\t *\n\t *\/\n\tnamespace Webkul\\Hello\\Block\\Adminhtml\\Hello\\Edit;\n\n\tclass Tabs extends \\Magento\\Backend\\Block\\Template\n\t{\n\t\tprotected $_template = 'Webkul_Hello::products.phtml';\n\n\t\tprotected $blockGrid;\n\n                public function getBlockGrid()\n                {\n                   if (null === $this-&gt;blockGrid) {\n                   $this-&gt;blockGrid = $this-&gt;getLayout()-&gt;createBlock(\n        \\Webkul\\Hello\\Block\\Adminhtml\\Hello\\Edit\\Tab\\Grid\\Product::class, 'custom.product.grid');\n                    }\n\n                    return $this-&gt;blockGrid;\n                 }\n\n                public function getGridHtml()\n                {\n                  return $this-&gt;getBlockGrid()-&gt;toHtml();\n                }\n\n\t}<\/pre>\n\n\n\n<p>Now Create Product.php Block file in folder Webkul\\Hello\\Block\\Adminhtml\\Hello\\Edit\\Tab\\Grid<\/p>\n\n\n\n<p>This file is created to add&nbsp;grid columns and collection.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">&lt;?php\n\t\/**\n\t * Webkul Hello Hello Edit Tab Grid Block\n\t *\n\t * @category    Webkul\n\t * @package     Webkul_Hello\n\t * @author      Webkul Software Private Limited\n\t *\n\t *\/\n\tnamespace Webkul\\Hello\\Block\\Adminhtml\\Hello\\Edit\\Tab;\n\n\tclass Product extends \\Magento\\Backend\\Block\\Widget\\Grid\\Extended\n\t{\n\t\t\/**\n\t\t * @var \\Webkul\\Catalog\\Model\\ProductFactory\n\t\t *\/\n\t\tprotected $productFactory;\n\n\t\tpublic function __construct(\n\t\t\t\\Magento\\Backend\\Block\\Template\\Context $context,\n\t\t\t\\Magento\\Backend\\Helper\\Data $backendHelper,\n\t\t\t\\Magento\\Catalog\\Model\\ProductFactory $productFactory,\n\t\t\t\\Magento\\Framework\\Registry $coreRegistry,\n\t\t\tarray $data = []\n\t\t) {\n\t\t\t$this-&gt;productFactory = $productFactory;\n\t\t\t$this-&gt;_coreRegistry = $coreRegistry;\n\t\t\tparent::__construct($context, $backendHelper, $data);\n\t\t}\n\n\t\t\/**\n\t\t * @return void\n\t\t *\/\n\t\tprotected function _construct()\n\t\t{\n\t\t\tparent::_construct();\n\t\t\t$this-&gt;setId('hello_tab_grid');\n\t\t\t$this-&gt;setDefaultSort('entity_id');\n\t\t\t$this-&gt;setUseAjax(true);\n\t\t}\n\n\t\t\/**\n\t\t * @return Grid\n\t\t *\/\n\t\tprotected function _prepareCollection()\n\t\t{\n\t           $collection = $this-&gt;_productFactory-&gt;create()\n                   -&gt;getCollection()-&gt;addAttributeToSelect('name')\n                   -&gt;addAttributeToSelect('sku');\n                   $this-&gt;setCollection($collection);\n\n                   return parent::_prepareCollection();\n\t\t}\n\n\t\t\/**\n\t\t * @return Extended\n\t\t *\/\n\t\tprotected function _prepareColumns()\n\t\t{\n\t\t\t$this-&gt;addColumn(\n\t\t\t\t'entity_id',\n\t\t\t\t[\n\t\t\t\t\t'header' =&gt; __('Product Id'),\n\t\t\t\t\t'sortable' =&gt; true,\n\t\t\t\t\t'index' =&gt; 'entity_id',\n\t\t\t\t\t'header_css_class' =&gt; 'col-id',\n\t\t\t\t\t'column_css_class' =&gt; 'col-id'\n\t\t\t\t]\n\t\t\t);\n\t\t\t$this-&gt;addColumn(\n\t\t\t\t'name',\n\t\t\t\t[\n\t\t\t\t\t'header' =&gt; __('Product Name'),\n\t\t\t\t\t'index' =&gt; 'name'\n\t\t\t\t]\n\t\t\t);\n\t\t\t$this-&gt;addColumn(\n\t\t\t\t'sku',\n\t\t\t\t[\n\t\t\t\t\t'header' =&gt; __('Sku'),\n\t\t\t\t\t'index' =&gt; 'sku'\n\t\t\t\t]\n\t\t\t);\n\n\t\t\treturn parent::_prepareColumns();\n\t\t}\n\n\t\t\/**\n\t\t * @return string\n\t\t *\/\n\t\tpublic function getGridUrl()\n\t\t{\n\t\t\treturn $this-&gt;getUrl('hello\/*\/helloGrid', ['_current' =&gt; true]);\n\t\t}\n\t\t\n\t}\n\n<\/pre>\n\n\n\n<p>Create HelloGrid.php Controller\u00a0file in folder Webkul\\Hello\\Controller\\Adminhtml\\Hello.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:php\">&lt;?php\n\t\/**\n\t * Hello Admin Hello helloGrid Controller\n\t *\n\t * @category    Webkul\n\t * @package     Webkul_Hello\n\t * @author      Webkul Software Private Limited\n\t *\n\t *\/\n\tnamespace Webkul\\Hello\\Controller\\Adminhtml\\Hello;\n\n\tclass HelloGrid extends \\Magento\\Backend\\App\\Action\n\t{\n           \/**\n            * @var \\Magento\\Framework\\Controller\\Result\\RawFactory\n           *\/\n            protected $resultRawFactory;\n\n            public function __construct(\n               \\Magento\\Backend\\App\\Action\\Context $context,\n               \\Magento\\Framework\\Controller\\Result\\RawFactory $resultRawFactory,\n              \\Magento\\Framework\\View\\LayoutFactory $layoutFactory\n            ) {\n                parent::__construct($context);\n                $this-&gt;resultRawFactory = $resultRawFactory;\n                $this-&gt;layoutFactory = $layoutFactory;\n              }\n\n             public function execute()\n             {\n       \n               $resultRaw = $this-&gt;resultRawFactory-&gt;create();\n               return $resultRaw-&gt;setContents(\n               $this-&gt;layoutFactory-&gt;create()-&gt;createBlock(\\Webkul\\Hello\\Block\\Adminhtml\\Hello\\Edit\\Tab\\Grid\\Product::class,\n'cutom.product.grid')-&gt;toHtml());\n             }\n\t}<\/pre>\n\n\n\n<p>Now create template file products.phtml in folder Webkul\\Hello\\view\\adminhtml\\templates<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?= $block-&gt;getGridHtml() ?&gt;<\/pre>\n\n\n\n<p>After creating all the files output will be look like the image.<br><img decoding=\"async\" width=\"1438\" height=\"548\" class=\"alignnone size-full wp-image-40157\" src=\"http:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/grid.png\" alt=\"Display Grid\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/grid.png 1438w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/grid-250x95.png 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/grid-300x114.png 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/grid-768x293.png 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/01\/grid-1200x457.png 1200w\" sizes=\"(max-width: 1438px) 100vw, 1438px\" loading=\"lazy\" \/><\/p>\n\n\n\n<p>That&#8217;s all for display grid in tab.<br>if you have any query or issue, comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here we will see how to display grid in tab in admin. Display Grid in Tab To display grid in tab first of all Create Tabs.php block file in folder Webkul\\Hello\\Block\\Adminhtml\\Hello\\Edit This file is created to add tabs in edit form. &lt;?php \/** * Webkul Hello Hello Edit Tabs Admin Block * * @category Webkul <a href=\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":21,"featured_media":61035,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[2576],"class_list":["post-38620","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-grid-in-tab-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Add or Display Grid in Tab in Admin Magento2<\/title>\n<meta name=\"description\" content=\"Magento2 - Display Grid in Tab Magento Admin, Show Grid in Tab Magento Admin - Magento2, Grid Under Tab Magento2, Custom Tab Containing Grid\" \/>\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\/magento2-display-grid-tab-magento-admin\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add or Display Grid in Tab in Admin Magento2\" \/>\n<meta property=\"og:description\" content=\"Magento2 - Display Grid in Tab Magento Admin, Show Grid in Tab Magento Admin - Magento2, Grid Under Tab Magento2, Custom Tab Containing Grid\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rahul0989\" \/>\n<meta property=\"article:published_time\" content=\"2016-01-22T10:10:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-01T11:41:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Rahul Mahto\" \/>\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=\"Rahul Mahto\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/\"},\"author\":{\"name\":\"Rahul Mahto\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3002e6bca8362f6cf1c61b2663496c4f\"},\"headline\":\"Magento2 &#8211; Display Grid in Tab Magento Admin\",\"datePublished\":\"2016-01-22T10:10:45+00:00\",\"dateModified\":\"2023-03-01T11:41:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/\"},\"wordCount\":135,\"commentCount\":7,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"keywords\":[\"Grid in Tab Magento2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/\",\"url\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/\",\"name\":\"How to Add or Display Grid in Tab in Admin Magento2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"datePublished\":\"2016-01-22T10:10:45+00:00\",\"dateModified\":\"2023-03-01T11:41:03+00:00\",\"description\":\"Magento2 - Display Grid in Tab Magento Admin, Show Grid in Tab Magento Admin - Magento2, Grid Under Tab Magento2, Custom Tab Containing Grid\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260,\"caption\":\"New Product Type\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Magento2 &#8211; Display Grid in Tab Magento Admin\"}]},{\"@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\/3002e6bca8362f6cf1c61b2663496c4f\",\"name\":\"Rahul Mahto\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?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\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Rahul Mahto\"},\"sameAs\":[\"http:\/\/webkul.com\",\"https:\/\/www.facebook.com\/rahul0989\"],\"url\":\"https:\/\/webkul.com\/blog\/author\/rahul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Add or Display Grid in Tab in Admin Magento2","description":"Magento2 - Display Grid in Tab Magento Admin, Show Grid in Tab Magento Admin - Magento2, Grid Under Tab Magento2, Custom Tab Containing Grid","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\/magento2-display-grid-tab-magento-admin\/","og_locale":"en_US","og_type":"article","og_title":"How to Add or Display Grid in Tab in Admin Magento2","og_description":"Magento2 - Display Grid in Tab Magento Admin, Show Grid in Tab Magento Admin - Magento2, Grid Under Tab Magento2, Custom Tab Containing Grid","og_url":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_author":"https:\/\/www.facebook.com\/rahul0989","article_published_time":"2016-01-22T10:10:45+00:00","article_modified_time":"2023-03-01T11:41:03+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Rahul Mahto","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Rahul Mahto","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/"},"author":{"name":"Rahul Mahto","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3002e6bca8362f6cf1c61b2663496c4f"},"headline":"Magento2 &#8211; Display Grid in Tab Magento Admin","datePublished":"2016-01-22T10:10:45+00:00","dateModified":"2023-03-01T11:41:03+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/"},"wordCount":135,"commentCount":7,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","keywords":["Grid in Tab Magento2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/","url":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/","name":"How to Add or Display Grid in Tab in Admin Magento2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","datePublished":"2016-01-22T10:10:45+00:00","dateModified":"2023-03-01T11:41:03+00:00","description":"Magento2 - Display Grid in Tab Magento Admin, Show Grid in Tab Magento Admin - Magento2, Grid Under Tab Magento2, Custom Tab Containing Grid","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2016\/10\/Magneto-Code-Snippet.png","width":825,"height":260,"caption":"New Product Type"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/magento2-display-grid-tab-magento-admin\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Magento2 &#8211; Display Grid in Tab Magento Admin"}]},{"@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\/3002e6bca8362f6cf1c61b2663496c4f","name":"Rahul Mahto","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?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\/b0def172ef24ea3f7319500afbb65af8012023ba5c143982a4c958b2fb58ee0d?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Rahul Mahto"},"sameAs":["http:\/\/webkul.com","https:\/\/www.facebook.com\/rahul0989"],"url":"https:\/\/webkul.com\/blog\/author\/rahul\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/38620","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\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=38620"}],"version-history":[{"count":21,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/38620\/revisions"}],"predecessor-version":[{"id":371349,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/38620\/revisions\/371349"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/61035"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=38620"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=38620"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=38620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}