Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
just in case you were wondering how you can check all properties:
node = theNodeYouAreWorkingWith;foreach (umbraco.presentation.nodeFactory.Property property in node.Properties) { DoYourThingWithValue(property.Value); }
or
node = theNodeYouAreWorkingWith;var allFieldsContent = "";foreach (umbraco.presentation.nodeFactory.Property property in node.Properties) { allFieldsContent = allFieldsContent + " " + property.Value; }DoYourThingWithValue(allFieldsContent);
Also you can create a nodeTypeAlias filter using prevalues (Thats what I would do). For an example you can take a look at the umbsearch2 source.
I hope this helps!Ron
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Read from all properties.
Hi,
just in case you were wondering how you can check all properties:
or
Also you can create a nodeTypeAlias filter using prevalues (Thats what I would do).
For an example you can take a look at the umbsearch2 source.
I hope this helps!
Ron
is working on a reply...