Hi everyone,
I have trouble with this probably simple task:
Let's say I have a "BlogPage(Page)" model.
I have defined this on the model:
```
general_panels = [
MultiFieldPanel(
[
InlinePanel('related_products'),
],
heading='Related Products',
classname='collapsible collapsed'),
]
```
Furthermore, I defined this:
```
class BlogPageProduct(models.Model):
product = models.ForeignKey(
'products.Product', related_name='+', verbose_name=_('Product'), on_delete=models.CASCADE)
page = ParentalKey('BlogPage', related_name='related_products')
```
This gets me close to my desired result. In the Wagtail admin I can see the collapsed section "Related Products" and I can press the "Add" button. The problem is, we have thousands of products and the drop down list that contains all the products is so big, it would crash my browser.
So I am wondering if there is some way to get a popup window that lets me search for a product and then select the one that I want, similar to how that magnifying glass in the normal Django admin works, when we use raw_id_fields.
Best regards
Martin