B4J - 8.5
ABM - 4.51
Is it possible to read values of a component that's on a secondary table within a primary table?
I have given each sub table a unique ID based on the id of row it supports but I don't seem to be able to get to it later.
What I want to do is read the value of each id (hidden) and ABMInput on the sub table when I hit the Add/Update button.
The sub table is added like this
ABM - 4.51
Is it possible to read values of a component that's on a secondary table within a primary table?
I have given each sub table a unique ID based on the id of row it supports but I don't seem to be able to get to it later.
What I want to do is read the value of each id (hidden) and ABMInput on the sub table when I hit the Add/Update button.
B4X:
Dim StockSearchTable As ABMTable = LookupPartsmodal.Content.Component("stocksearchtable") 'Works
Dim SubTable As ABMTable = LookupPartsmodal.Content.Component ("UID247") 'Doesn't work
The sub table is added like this
B4X:
rCellValues.Add(BuildOtherTable("UID" & tblFields.Get("id"), tblFields.Get("id"))) ' This is the actual stock and location
rCellThemes.Add("aligntop")