I have fresh install magento 2.1.5. Every thing is working well except admin data grid. I also run php bin/magento setup:static-content:deploy, but issue still exists. enter image description here
When I use inspect element i found that th tag around span tag is missing. enter image description here
How I solve this issue, This issue is with all ui component grid.
-
have you fixed issue?Abdul– Abdul2017年09月26日 13:02:06 +00:00Commented Sep 26, 2017 at 13:02
3 Answers 3
I was having the same exact issue. It seems to have something to do with the server configurations not applying the JS correctly. Knockout JS was attempting load the templates for the admin data grids, but the tags weren't being rendered, now allowing the columns to be counted when it reaches the toolbar.js file.
Solution
Go to your Magento Root and add this to your .htaccess file:
<IfModule pagespeed_module>
ModPagespeed off
</IfModule>
Try to clear
var/generation
Var/cache
Var/di
Execute all this commands
Bin/magento cache:clean
Bin/magento cache:flush
Bin/magento setup:upgrade
Bin/magento setup:di:compile
Bin/magento setup:static-content:deploy
Make sure to set proper permissions.
-
issue still exists...Waseem Abbas– Waseem Abbas2017年04月03日 10:13:14 +00:00Commented Apr 3, 2017 at 10:13
-
Doesn't work for meParas Arora– Paras Arora2017年09月06日 10:29:38 +00:00Commented Sep 6, 2017 at 10:29
This worked for me too.
<IfModule pagespeed_module>
ModPagespeed off
</IfModule>