I have two globals and a value list defined in a module (A)
That module is loaded into my solution and the fields and value list can be used as expected
The solution also has a module (B) loaded, that itself uses module A and uses the globals and value list just fine.
The problem arises when I show the module B inside the solution. That value list just stays empty, although it is being filled by the method. If I look at this only inside module B, everything is OK.
To explain better:
Solution → Module A (no problem)
Solution → Module B → Module A (Problem in module B)
Module B → Module A (no problem in module B)
A point might be, that that Module A is directly attached to the solution and being used by the Module B, that is also attached to the solution.