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...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
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...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.