Lot filtering section
- Name:
lotFiltersTemplate - Url:
#/lots,#/auctions/{AUCTION_UUID} - Description: Lot filtering section in lot listing page
Preview

Default Template
<!-- Number of items found based on the search criteria -->
<lot-list-items-count />
<!-- Auction Type Filtering -->
<filter-auction-type />
<!-- Lot filtering by status radio list -->
<filter-lot-status />
<!-- Winning/Losing radio button to filter lots by -->
<filter-winning-or-losing/>
<!-- Department List to filter lots based on -->
<filter-department-list />
<!-- Category list to filter lots based on. This component is only displayed if department is selected and categories are filtered by department -->
<filter-category-list />
<!-- State and municipality list to filter lots by -->
<filter-location-list />
<!-- Min/Max input fields to filter lots by price range -->
<filter-price-range />
<!-- Min/Max input fields to filter lots by reserve -->
<filter-reserve-range />
<!-- Min/Max input fields to filter lots by low/high estimate -->
<filter-estimate-range />
<!-- Min/Max input fields to filter lots by lot no range -->
<filter-lot-range />
<!-- Checkbox field to filter lots whether it has image or not -->
<filter-with-image />
<!-- The whole dynamic fields to filter lots -->
<filter-dynamic-fields />
Available Components
All components starting with <filter- support :collapsed="true|false" to control whether they render collapsed by default.
<!-- Example: Make departments collapsed by default -->
<filter-department-list :collapsed="true"/>
<LotListItemsCount />
Displays a summary of the number of lots found based on the current search/filter criteria (e.g. "Showing 45 lots").
<FilterAuctionType />
Displays a filter to narrow lots by auction type (Timed or Live).
<FilterLotStatus />
Displays a radio group to filter lots by status. The available status options are controlled by filterLotStatusOptions and the default selected value by defaultLotStatus.
Available status values:
all— Show all lotsupcoming— Show only lots where the start date is in the futureopen— Show only lots that are published and have startedpublished— Show only published lotssold— Show only sold lotsunsold— Show only unsold lotspassed— Show all sold and unsold lots
<FilterWinningOrLosing />
Displays a radio group to filter the lot listing by the current user's bidding status: winning, losing, or all. Only rendered when the user is authenticated.
<FilterDepartmentList />
Displays a list of departments to filter lots by. Visibility is controlled by hideDepartmentsIfSelected.
<FilterCategoryList />
Displays a list of categories to filter lots by. Categories are filtered based on the selected department. Only shown when a department is selected (unless alwaysShowCategories is true).
<FilterLocationList />
Displays a list of states and municipalities to filter lots by.
<FilterPriceRange />
Displays min/max input fields to filter lots by price range (last bid amount or start price).
<FilterReserveRange />
Displays min/max input fields to filter lots by reserve amount.
<FilterEstimateRange />
Displays min/max input fields to filter lots by low/high estimate range.
<FilterLotRange />
Displays min/max input fields to filter lots by lot number range.
<FilterWithImage />
Displays a checkbox to filter lots that have at least one image.
<FilterDynamicFields />
Renders filter inputs for all dynamic fields that are marked as filterable in Artisio AMS. These filters are generated automatically based on the dynamic field configuration.
Properties
mainConfig
See documentation here
is_authorized
See documentation here