1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<?xml version="1.0" standalone="yes"?>
<wo class="WOFrame">
<binding name="pageName" passthrough="NO" defaults="Page Names"/>
<binding name="src"/>
<binding name="value" passthrough="NO"/>
<binding name="actionClass" passthrough="NO" defaults="Direct Action Classes"/>
<binding name="directActionName" passthrough="NO" defaults="Direct Actions"/>
<binding name="queryDictionary" passthrough="NO"/>
<binding name="otherTagString" passthrough="NO"/>
<validation message="either one of 'pageName', 'src', or 'value' may be bound, or either or both of 'actionClass' and 'directActionName' may be bound">
<count test="!=1">
<bound name="src"/>
<bound name="value"/>
<bound name="pageName"/>
<or>
<bound name="actionClass"/>
<bound name="directActionName"/>
</or>
</count>
</validation>
</wo>
|