Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi all,
I've got a filters block setup on my website which looks like the following;
@if (Model.MoreFilters != null && Model.MoreFilters.Count() > 0) { <div class="select__wrapper filter-categories"> <label class="select__wrapper__title">Filters</label> <div class="select__wrapper__dropdown"> <div> @foreach (var item in Model.MoreFilters) { <label> <input type="checkbox" class="chkFilters" value="@item.Key.ToString("N")"> <span class="filter__checkbox"></span> @item.Name </label> } </div> </div> </div> }
It allows you to add addition filters, however when they add addition filters I want the label e.g "Filters" to show what the category is of that filter is e.g "Age", How could I achieve this?
The tree for the filters looks like
Thanks
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Get the root of the filtered list.
Hi all,
I've got a filters block setup on my website which looks like the following;
It allows you to add addition filters, however when they add addition filters I want the label e.g "Filters" to show what the category is of that filter is e.g "Age", How could I achieve this?
The tree for the filters looks like
Thanks
is working on a reply...