Hi,
I have description that goes something like this:
Autor>>descriptionRegija
^ MASingleOptionDescription new
accessor: #regija;
label: 'Regija';
priority: 700;
options: LAURegija findAll;
beRequired;
yourself
the idea is to have a drop down that will display all available LAURegija instances. Now the problem is that Magritte seems to cache this description and method descriptionRegija does not get called every time the form is displayed, and consequently, if a new LAURegija is added, it is not present in the drop down.
So how to work around it?
Many thanks,
rush