Generic Object Collection on Sales order form
I have just tried accessing the sales order form generic object collection in the set up before handler to discover it is null, this is not the case in the set up handler, is this a bug?
The Jiwa community forums
https://forums.jiwa.com.au/
SBarnes wrote:I have just tried accessing the sales order form generic object collection in the set up before handler to discover it is null, this is not the case in the set up handler, is this a bug?
Public Overridable Sub Setup() Implements IJiwaBusinessLogic.Setup
_PropertiesChanged = New Collection(Of String)
_SortOrders = New List(Of IJiwaNavigable.SortKey)
_GenericObjectCollection = Manager.CollectionFactory.CreateCollection(Of GenericObjectCollection, GenericObjectItem)
_AbstractPermissionCollection = Manager.CollectionFactory.CreateCollection(Of AbstractPermissionCollection, AbstractPermission)
_BaseFindSQLQuery = String.Format("SELECT TOP 1 {0} FROM {1}", RecIDFieldName, TableName)
End Sub