How can I user field value in another hidden field in a widget.
Priority: 4
WHERE: DisplayOrder = 4
In the where, ive tried the following:
DisplayOrder = {% Field["Priority"]%}
DisplayOrder = {% Field["Priority"].Value%}
DisplayOrder = {% Fields["Priority"]%}
DisplayOrder = {% Fields["Priority"].Value%}
As long as the property itself is hidden (can't resolve macros in widgets any other way) you should be able to do {% Priority %}, to be safe do DisplayOrder = {% Convert.ToInt(Priority, 0) |(identity)GlobalAdministrator%}
{% Priority %}
DisplayOrder = {% Convert.ToInt(Priority, 0) |(identity)GlobalAdministrator%}
Please, sign in to be able to submit a new answer.