umbraco

Umbraco, is it just me or is it really hard to use? [closed]

感情迁移 提交于 2019-12-20 08:09:48
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 years ago . Looking for some feedback on those of you who have evaluated umbraco lately. I've been on a quest for the 'best' cms that balances ease of use/extendability/customization etc. to use as a base for a new vertical product I am in the planning stages on, so for the past month or

Umbraco: Create CheckBoxList property with prevalues from mvc model

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-20 05:52:47
问题 What I want to do is create a CheckBoxList property so the editor could choose facilities specific for current page (hotel name) in BO, and render content based on what is checked. I've created a model: public class Facility { public int Id { get; set; } public string Description { get; set; } public string IconUrl { get; set; } public List<Facility> GetFacilities() { return new List<Facility>() { new Facility() { Id = 4, Description = "Free parking", IconUrl = "" }, new Facility() { Id = 6,

Umbraco AJAX partial view controller action call - unable to retrieve the Umbraco.Context

青春壹個敷衍的年華 提交于 2019-12-20 04:16:31
问题 I have the following scenario: Calendar page that loads the initial sale nodes from last 2 months. This page has a Load more button that fetches more Sale items that are 2 additional months of Sales . I have added the call to the to controller action like this: public ActionResult LoadMoreSales(int months = 0) { if (Request.IsAjaxRequest()) { if (Request.QueryString["department"] == null) { return PartialView("Calendar/_Sales", GetSales(0, months)); } else { int depId = 0; Int32.TryParse

how to remove /umbraco/surface/ from URL?

こ雲淡風輕ζ 提交于 2019-12-19 11:26:32
问题 My Umbraco URL has /umbraco/surface/ in them. For example: http://localhost:50656/umbraco/Surface/HealthInsurance/Application?Pid=26665&Lid=73&Spid=23 http://localhost:50656/umbraco/Surface/HealthInsurance/Results/73 Is it possible to rewrite url for browser display and remove /umbraco/surface/ from it ? I don't want to break just for browser display make url like one below: http://localhost:50656/HealthInsurance/Application?Pid=26665&Lid=73&Spid=23 http://localhost:50656/HealthInsurance

Assigning hostnames in umbraco

我是研究僧i 提交于 2019-12-19 08:45:12
问题 I'm setting up af multi lingual page with the umbraco cms. I have a content structure that looks like this: Content da danish subpage 1 danish subpage 2 en english subpage 1 english subpage 2 I would like the routing to be something like: http://mysite.dk should go to http://mysite.dk/da/danish subpage 1 http://mysite.dk/da/ should go to http://mysite.dk/da/danish subpage 1 (as well) http://mysite.dk/en/ should go to http://mysite.dk/en/english subpage 1 I know I need to set up the hostnames

Working with non-Umbraco data in MVC and Umbraco project?

心不动则不痛 提交于 2019-12-19 02:59:13
问题 I am working on a project that has MVC 4 and the Umbraco CMS installed. I apologise - being newbie, my question may be weird. My question is: how do I work with types which I don't want to manage through Umbraco back office?Rather, it will be simple data coming and being stored in SQL Server. Specifically I want to ask: Can I create a controller in MVC and bypass Umbraco? What controllers should be inherited from? Should they be standard MVC Controller, SurfaceController or

Sharepoint CMS vs UmbracoCMS

血红的双手。 提交于 2019-12-18 11:13:13
问题 I work for a large local government organisation who are about to embark on using SharePoint to replace our ageing intranet with an all-singing all-dancing collaborative site. The focus for the intranet will be replacing random files, content pages and documents that are spread across the organisation with a SharePoint installation which will magically bring order to all of this. The decision to use SharePoint for the intranet has already been made. The CMS we use on our public website also

.gitignore not ignoring web.config

半城伤御伤魂 提交于 2019-12-18 10:42:39
问题 For my remote repository, I'm trying to ignore the web.config file of my Umbraco website. The .gitignore is in the root of my website, and the file to ignore, web.config is also in the root of my website. so I added this line to my .gitignore file: web.config But everytime I push changes to my remote repository, the web.config file is also pushed to the remote repository. What am I doing wrong? 回答1: git will not ignore a file that was already tracked before a rule was added to this file to

XSLT For-Each Wrapping every nth item in a div

时间秒杀一切 提交于 2019-12-18 07:15:27
问题 I have a series of nodes that are direct child nodes to a parent I want to loop over those nodes but have them wrapped in 'groups' of 4... I'm probably not wording this very clearly so this might help; <span class="child01">@nodename</span> <span class="child02">@nodename</span> <span class="child03">@nodename</span> <span class="child04">@nodename</span> <span class="child05">@nodename</span> <span class="child06">@nodename</span> <span class="child07">@nodename</span> <span class="child08">

Is Orchard or Umbraco MVC?

有些话、适合烂在心里 提交于 2019-12-17 19:33:49
问题 I'm much happier with the quality of output I can get with MVC over webforms: hand crafted HTML that isn't full of additional machine generated gubbins (polite term). I realize of course that MVC is about a lot more than this, but concentrating on just that "view" part... I'm looking at Orchard or Umbraco for a project. I see both support Razor syntax (Umbraco just about) - but with my strong leaning to MVC Views rather than webforms, does that rule out Umbraco? All the Umbraco reading I've