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' I use some ultimate pickers in order to create some dropdown lists in my umbraco control panel.
My problem is when I want to access a specific ultimate picker by its rendred node id.
Can I do it with XSLT? if not, Is there another suggested way?
Thnks from advance!
Hi Ben
You should be able to fetch the selected values from the ultimate picker by referencing the property alias where you're using the datatype. It can be done using XSLT, Razor or C#... :)
/Jan
Thanks for the reply.
Finding the selected value by the property alias is not the issue. I need to find it by the ultimate picker's rendered node id.
Something else which could be useful for me is finding the property's value by its alias name in a variable. For instance:
<xsl:variable name="name" select="alias1" />
<xsl:value-of select="./data[@alias=$name]" />
I know it was possible with the old schema, is there a way to do it with the new schema?
Anyway, I would strongly prefer the first method(finding by the ultimate picker's rendred node id)
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
ultimate picker ddls via xslt
Hi' I use some ultimate pickers in order to create some dropdown lists in my umbraco control panel.
My problem is when I want to access a specific ultimate picker by its rendred node id.
Can I do it with XSLT? if not, Is there another suggested way?
Thnks from advance!
Hi Ben
You should be able to fetch the selected values from the ultimate picker by referencing the property alias where you're using the datatype. It can be done using XSLT, Razor or C#... :)
/Jan
Thanks for the reply.
Finding the selected value by the property alias is not the issue. I need to find it by the ultimate picker's rendered node id.
Something else which could be useful for me is finding the property's value by its alias name in a variable. For instance:
<xsl:variable name="name" select="alias1" />
<xsl:value-of select="./data[@alias=$name]" />
I know it was possible with the old schema, is there a way to do it with the new schema?
Anyway, I would strongly prefer the first method(finding by the ultimate picker's rendred node id)
is working on a reply...