Advanced Tables (Plugin) Example / advice.

I thought it might be best for me to put this in the help section and not just the community tab.

is there a github repo showing some examples like for the demo?

I've tried setting up filters on a table and all I want to do is say "For the Discipline filter, use the relation and a SELECT box".
Clearly I am doing something wrong as it seems to preload this filter in when I hit reset. I only what the filter to appear when the user selects it.

I am sure it is dead easy but I just missed it.
->filters([
                AdvancedFilter::make()
                    ->filterPickerSearch()
                    ->filterPickerMaxHeight('240px')
                    ->includeColumns()
                    ->filters([
                        SelectFilter::make('discipline.name')
                            ->relationship('discipline', 'name')
                            ->multiple()
                            ->preload(),
                    ])
                //
                ,
            ])
Was this page helpful?