Hi again,
Lukas and I solved the problem. You must use the last version and do
something like:
descriptionCountry
^ (MASingleOptionDescription auto: 'country' label: 'Country')
optionsAndLabels: {#fr->'France'. #gb->'Great Britain'};
default: #fr;
beRequired;
yourself
This work with multiple option descriptions too:
descriptionCountry
^ (MAMultipleOptionDescription auto: 'country' label: 'Country')
optionsAndLabels: {#fr->'France'. #gb->'Great Britain'};
default: {};
beRequired;
yourself
--
Damien Cassou