Hi All,
I have create Project DICD3FO_VASPackage inheritance Application Suite model
- Add Forms extension LedgerJournalTransDaily.Extension to my Project
- Form LedgerJournalTransDaily.Extension had ready DataSource LedgerJournalTrans
- Add DataSource "DICVASFields" to DataSource of Form Extension
- New tab in the Design pattern
- Add some fields of DICVASFields datasource to this TAB
- Input Data Method (DICVASFields_Extension::editAddress) and DataSource (DICVASFields) in to Field (Address) attribute
- Create class Name: DICVASFields_Extension
public static class DICVASFields_Extension
{
[SysClientCacheDataMethodAttribute(true)]
public static edit DICAddress editAddress(boolean _set,DICVASFields _this,DICAddress _address)
{
// I want to get current datasource of LedgerJournalTrans in form LedgerJournalTransDaily.Extension to assgin to 3th param in the method setAddress
return _this.setAddress(_set,_address, ledgerJournalTrans);
}
}
Please help me find out the solutions
Thanks,
DonTran
*This post is locked for comments