Search on EPiWiki.se
via EPiServer workflows in EPiServer CMS – EPiServer CMS note.
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
Search on EPiWiki.se
via EPiServer workflows in EPiServer CMS – EPiServer CMS note.
Just a snippet from my Certification studies:
//Commerce Cache handling
//cache invalidation time is configured in ecf.[objecttype].config
//e.g. ecf.catalog.config element
CatalogCache.Clear(); //clears the entire catalog cache
CatalogCache.Remove(“entrykey”); //invalidate a specific entry
CustomersCache.Clear(); //clear all customers cache
MarketingCache.Clear();
OrderCache.Clear();
SecurityCache.Clear();
7.5.
This will hide the property visibility for Editors in EPiServer.
Just override the property and hide with DisplayInEditMode = false.
[PageTypeProperty(DisplayInEditMode = false)] public override string ShortHeading { get; set; }
The dropdown menus in the code editor stopped working in Visual Studio 2013 for me.
The problem is a bug when using multiple monitors and a “leftmost” monitor that is not the “main” display…
The solution is quite simple for now: make your leftmost monitor the main monitor.
A bugfix is coming, included in next Visual Studio update.
More info:
ide – Visual Studio 2013 Update 2 – C# navigation bar drop down menus not working – Stack Overflow.