Create a Custom Shopping World Element with Custom Backend Ext JS Template Window

Yes but it only shows how to create a simple basic view,

But the process is all the same. Do you have concrete issues with create a grid view? If yes, just show where you’re stuck and we’ll try to help you. But of course, we won’t code the whole thing for you.  Wink
Custom shopping world elements
This describes how to start with your own component. You just have to add the grid. It just a bare component, everything can be added to it (also a grid view).

If you want an example, just have a look at the ProductSlider shopping world element. As you can see it inherits from the same class as in the tutorial I linked aboved. (extend: ‚Shopware.apps.Emotion.view.components.Base‘,) They also add a grid view in order to add products to the slider (-> a similar task, like yours).

So follow the tutorial above. Then you have your own component which inherits from Shopware.apps.Emotion.view.components.Base. Then you can add a GridView and many more things as you like.

https://github.com/shopware/shopware/blob/5.4/themes/Backend/ExtJs/backend/emotion/view/components/article\_slider.js

Best regards