CHAIN OF COMMAND ON A FORM DATASOURCE FIELDS
Yes with the new version it is possible to have a COC on a form datasource FIELDS .It has the similar syntax as we use to follow as shown below.
[ExtensionOf(formdatafieldstr(FormToExtend, DataSource1, Field1))]
final class FormDataField1_Extension
{
public boolean validate()
{
boolean ret
//...
ret = next validate();
//...
return ret;
}
}
DataSource1 - > is the datasource which needs to be customized .
No comments:
Post a Comment