London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Hi,
I have just updated the project, please try again
Regards, Jonas
I am curious if anyone can tell me if BrilliantCut is still working on current CMS, FIND and Commerce? We are on CMS 9.8.3, Commerce 9.14, Find 11.1.5.4342, and Find.Commerce 9.5.3. Basically, We can install the NuGet Widgit, which installs the Core too. I can add the BrilliantCut gadget and see the initial option buttons of No Filtering, Filter result list, etc. When we add the Initialization Module below,, none of the facets display. Meaning, filters for Children and Descendents options don't display, nor does the text box.
Just wondering if you could provide some insight. Not seeing any errors logged either.
using System;
using System.Linq;
using BrilliantCut.Core;
using BrilliantCut.Core.Filters.Implementations;
using BrilliantCut.Core.FilterSettings;
using EPiServer.Framework;
using EPiServer.Framework.Initialization;
namespace Tmp.CMS.Core.Initialization()()(new TextboxFilterSetting(50));
{
[InitializableModule]
[ModuleDependency(typeof(EPiServer.Web.InitializationModule))]
public class BrilliantCutInitialization : IInitializableModule
{
public void Initialize(InitializationEngine context)
{
context.Locate.Advanced.GetInstance
.Facet
.Facet
}
public void Uninitialize(InitializationEngine context)
{
//Add uninitialization logic
}
}
}