Hello!
I've been searching for documentation on how to access data in a column, from the database, but to no avail. To give you some sort of background, my Product object has a detail called Collateral. Users can add more collaterals - each having an allocation percentage. What I need is to create a function that gets from the database the allocation percentage of each Collateral added to the Product. How can I implement this with javascript?
Example: Product1 has 3 Collaterals added: Coll1, Coll2, Coll3.
How can I get, for Product1 the allocation percentage of each Collateral?
Also, where could I check more documentation on the available methods? For example, asyncValidate for javascript?