Hello Paul, You are using a custom made Model. What if I have already a generated model with all the propertyvalues like name, titel and so forth? How can I make it possible to inherit my custom made model from the generated model? I keep getting a nullpointerexception because of the Html.RenderAction in the baseView..
Hello Paul, nevermind. I solved it by just not using a partial view and custom model. I'm using the generated model. Anyway thanks for this helpful video. Will there be more videos about Umbraco v8 in the future? Kind regards.
Hi Paul thanks for a nice tutorial,When i am rendering text for swidish language browser not rendering some text in swidish.Can you please let me know am i missing something? i am using umbraco 8.14
If the method "GetPropertyValue" isn't available for you for CurrentPage it's probably because you have forgotten to include Umbraco.Web on top of the page. Silly mistake I did which took me few minutes to realise.
Hey Paul great videos because of you and your.tutorials.I am now an embrace certified developer. Thank you for this great content. Please keep it coming I was wondering if you could please do a video.on embrace macros which enable content editors to compose pages themselves
Hello Paul, You are using a custom made Model. What if I have already a generated model with all the propertyvalues like name, titel and so forth? How can I make it possible to inherit my custom made model from the generated model? I keep getting a nullpointerexception because of the Html.RenderAction in the baseView..
Hello Paul, nevermind. I solved it by just not using a partial view and custom model. I'm using the generated model. Anyway thanks for this helpful video. Will there be more videos about Umbraco v8 in the future? Kind regards.
Hi I’m glad you got it sorted. I will continue to make videos about v8
Edwinconsult __ on Instagram fixed up SEO related issues on my website.. could talk em over
Hi Paul thanks for a nice tutorial,When i am rendering text for swidish language browser not rendering some text in swidish.Can you please let me know am i missing something? i am using umbraco 8.14
If the method "GetPropertyValue" isn't available for you for CurrentPage it's probably because you have forgotten to include Umbraco.Web on top of the page. Silly mistake I did which took me few minutes to realise.
Yeah I used to forget that too
Hello Paul, Please help me how to make the sitemap in Umbraco 8. Thanks
Hi, there is a tutorial here our.umbraco.com/Documentation/Tutorials/Creating-an-XML-Site-Map/
@@CodeSharePaul Thanks so much.
Hey Paul great videos because of you and your.tutorials.I am now an embrace certified developer. Thank you for this great content. Please keep it coming I was wondering if you could please do a video.on embrace macros which enable content editors to compose pages themselves
Followed along pretty cool stuff.
Thanks Eric
Hey Paul, Can I get Umbraco dictionary field in Controller?
Yes you can. I don't have the code to hand but I've done it many times.
hey Paul! How can I get Umbraco field in another Content? I saw in your code you using CurrentPage!
Try .getpropertyvalue
This is how my keywords output became following your example wierd enough.
Following will resolve it:
var keywords = (string[])CurrentPage.GetPropertyValue("keywords");
model.Keywords = string.Join(",", keywords);