Search user by attribute (for example waveset.osobni_cislo)
Is it possible to rewrite this rule to searching users by attribute osobni_cislo (or fullname) , for me it works only for name and lastname:
<Rule name='getPSUsers'>
<RuleArgument name='full'>
<Comments>The fullname of a user</Comments>
</RuleArgument>
<RunAsUser>
<ObjectRef type='User' id='#ID#Configurator' name='Configurator'/>
</RunAsUser>
<block trace='true'>
<ref>context</ref>
<invoke name='getUsers' class='com.waveset.ui.FormUtil'>
<ref>context</ref>
<map>
<s>conditions</s>
<list>
<new class='com.waveset.object.AttributeCondition'>
<s>lastname</s>
<s>contains</s>
<ref>full</ref>
</new>
</list>
</map>
</invoke>
</block>
</Rule>

