So I'm trying to pull out some xml coding stunts here. Having a fixedlist container with id="$param[widgetid]".
While works fine,
something like does not.
What I'm trying to achieve is to give different ids different includes. But I can't figure out to get the current control (after assigned with id) to identify itself (with no focus).
Is there a proper way of doing this?
EXAMPLE:
Thanks.
While
Code:
Control.HasFocus($param[widgetid])
something like
Code:
Integer/String.IsEqual($param[widgetid],1510)
What I'm trying to achieve is to give different ids different includes. But I can't figure out to get the current control (after assigned with id) to identify itself (with no focus).
Is there a proper way of doing this?
EXAMPLE:
Code:
<control type="$PARAM[containerType]" id="$PARAM[widgetid]">
<include condition="CONTROLID == 1510 (pseudu-code)">foo</include>
<include condition="CONTROLID == 1520">bar</include>
etc...
</control>
Thanks.