How to get visible attributes from entity form using c# in custom workflow? Any idea please share!
It's a PITA but it's doable.
systemform
entity (you want the formxml
attribute)formxml
attribute contains the form definition, it's encoded (<
is written as <
and so on) xml format.Inside the formxml
contents, a field looks like this:
<cell id="(guid)" labelid="(guid)" showlabel="true" locklevel="0" visible="false">
<labels>
<label description="(field label)" languagecode="1033" />
</labels>
<control id="(field name)" classid="(guid)" datafieldname="(field name)" disabled="false">
cell
elements which do not have visible
attribute (it's only there if the field is hidden) Pain point: You won't be able to tell if a field visibility has been toggled through javascript