Questions tagged [umbraco7]

Umbraco 7 is an open source content management system (CMS) platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure.

Umbraco 7 is the seventh stable release of Umbraco - an open source content management system (CMS) platform for publishing content on the World Wide Web and intranets. It is written in C# and deployed on Microsoft based infrastructure. The open source backend is released under an MIT License while the UI is released under the Umbraco license.

Resources

https://umbraco.com/products/umbraco-cms/umbraco-7/

1479 questions
3
votes
0 answers

Populating Umbraco Contour forms from using cookie data

We're currently using Umbraco version 7.1.4 assembly: 1.0.5261.28127 with Contour version 3.0.26 I'm trying to populate a contour form with information pulled from a database, but dependent on a user cookie (the cookie hold the primary key for the…
user70568
3
votes
2 answers

How to update node properties from a page in Umbraco 7 using razor

I have been hunting around for a solution to this, but cannot find anything for version 7. I just have to update a date property on an Umbraco 7 node. (not the publish date) Then I need to tell umbraco to republish the page/update caching. In the…
Slipoch
  • 750
  • 10
  • 23
3
votes
2 answers

Umbraco 7 Multinode Treepicker xpath query root node parent of parent

I have Multinode Treepicker in Umbraco 7.4.1. I'm trying to find out how to set the picker to start from the parent of the parent of my current node. I'm also need the option to set the picker to start from the siblings of the parent of my current…
Jarufi
  • 308
  • 1
  • 12
3
votes
0 answers

Umbraco save content in new thread

I'm writing a desktop client that allows the user to upload a spreadsheet with products. The spreadsheet is then parsed by the API and products are either created or updated and saved using the ContentService. Since this process is really slow my…
frmi
  • 508
  • 1
  • 7
  • 21
3
votes
2 answers

Importing Files Using Angular.js and C#

I am building an Umbraco7 Package and I'm at a bit of a standstill. I have very little experience with Angular and C# and what I'm trying to do is add an import option where a backoffice user can import an xls file and populate an existing database…
3
votes
2 answers

How to I create an umbraco widget which uses external data source?

I am creating an Umbraco site and I want to allow site admins to be able to place a "widget" (not sure if this is the right term) on a page that will render a table with data from an http service. A made up example service Let's suppose I have an…
jessegavin
  • 74,067
  • 28
  • 136
  • 164
3
votes
1 answer

Getting value of UmbracoContext.Current as null

I am having the following code on my Home Controller / Viewmodel class public class HomeController : SurfaceController { .... [AllowAnonymous] public ActionResult LoginIn() { var user = new UserDetail() { FirstName = "FirstName",…
BJ Patel
  • 6,148
  • 11
  • 47
  • 81
3
votes
1 answer

Umbraco site wide settings node

I am working with Umbraco and was wondering whether there is a easy way to create a site wise settings node. At the moment I have this tree structure. Content Home Item 1 Item 2 Item 2a What I would like to create is something like…
harnamc
  • 541
  • 6
  • 20
3
votes
1 answer

ASP.NET bundles are not cached in chrome

I have an asp.net mvc site that runs on umbraco and uses asp.net bundling to bundle css and js files. But the bundles don't get cached in chrome and it reloads them every time. I tried IE, Opera and Firefox and they all cache the bundles fine. Here…
Amila
  • 2,779
  • 1
  • 27
  • 31
3
votes
2 answers

How to use Archetype with Razor?

I can't believe I couldn't find examples online. This is my simple Archetype. This is what I tried: @CurrentPage.ctaTopLeft.text but it gives this error: 'Archetype.Models.ArchetypeModel' does not…
Aximili
  • 28,626
  • 56
  • 157
  • 216
3
votes
1 answer

Umbraco Examine - querying issue

I have the following data value for the object I am retrieving with Examine (image link for easier viewing): __Icon: icon-shopping-basket-alt-2 color-red __IndexType: content __NodeId: 1413 __NodeTypeAlias: sale __Path: -1,1098,1410,1413 id: 1413…
Marko Jovanov
  • 418
  • 10
  • 25
3
votes
9 answers

Umbraco - reset admin password

Is it possible? I was playing around with Umbraco, got it started up last week (just got it up and running, didn't do anything beyond that) and by Monday I'd forgotten the password. I looked here, but none of the suggestions seem to work. Changing…
Matt Burland
  • 44,552
  • 18
  • 99
  • 171
3
votes
2 answers

Sending data by using AngularJS to an action method of ASP.NET MVC 5 controller

I've used Umbraco 7.3 and ASP.NET MVC 5 in my project. I want to Send data from AngularJS to ASP.NET MVC 5 controller. How can I do it? reply.html :
x19
  • 8,277
  • 15
  • 68
  • 126
3
votes
1 answer

Reusing Umbraco datetime picker

Umbraco 7 has this date/time picker How do you reuse that in a custom control to avoid reinventing the wheel? Currently I only have a plain textbox:
Aximili
  • 28,626
  • 56
  • 157
  • 216
3
votes
1 answer

Best practice to send a member their forgotten password

I am building a login/registration section for our members area in Umbraco 7.1.7. I would like to send a user their password in plain text via email. The idea is, if the user forgets their password, they can simply enter their email address (which…