This may be to do with the breaking changes in Version 7.6
Property Value Converters are now used within v7.6 and I had an issue with the MultinodeTreePicker returning the wrong format.
I switched the EnablePropertyValueConverters setting in the umbracoSetting.config to false to enable my site to work again. Once the doc's are up to date i'll return this to true and convert the razor code to use PropertyValueConverters.
Specified Cast is not valid
I've set up a empty Umbraco and then i added the Umazel Starter Kit and when i try to get on my Site i get this Error.
What am i doing wrong?
please help.
set up with Visual Studio Nuget <-
I tried it then with Umbraco 7.6 that doesn't seemed to work.
Now i've set up with 7.5.12 and it works! :)
Hi
This may be to do with the breaking changes in Version 7.6 Property Value Converters are now used within v7.6 and I had an issue with the MultinodeTreePicker returning the wrong format.
Here is a list of the breaking changes for v7.6 - https://our.umbraco.org/documentation/Getting-Started/Setup/Upgrading/760-breaking-changes
I switched the EnablePropertyValueConverters setting in the umbracoSetting.config to false to enable my site to work again. Once the doc's are up to date i'll return this to true and convert the razor code to use PropertyValueConverters.
this works for me. thanks for saving my time
I just came across this when using Umazel in 7.6.4, and modified the int call to:
switch (currSection.TitleSize.ToString().AsInt())
Now works fine...
This solution works in 7.9.2 as well! I suggest the uMazel coders update this fix in there package.
Hi!
Where can I find the
?
Thanks, Simeon
EDIT: SORRY, I FOUND IT...
Had to create a small website "should be ready yesterday"-style (yup.. that kind of client) and stumbled across this issue as well.
Changing line 16 to "switch (currSection.TitleSize.ToString().AsInt())" also works in 7.12.3 (Umazel installed from package repo).
is working on a reply...