Hi,
The described approach is not that easily possible in BizForms/FormEngine.
Better way will be to use javascript to find controls and change their onchange attributes in the custom layout of BizForm's
Alternative form.
You can create custom form and in the source view of the layout use constructions like:
<table>
...
<tr>
<td>$$label:myField$$</td>
<td><span id="myCustomField">$$input:myField$$</span><br />
$$validation:myField$$</td>
</tr>
...
</tbody>
</table>
<script type="text/javascript" language="javascript">
//<![CDATA[
var customFieldContainer = document.getElementById('myCustomField');
var field = customFieldContainer.getElementByTagName('input')[0];
field.onChange = function(){
/* code here */
};
//]]>
</script>
Hope this will help.
Regards,
Zdenek