Hi
I have a statusbar widget working correctly if I only have one in the xml view, but as soon as I try something like this:
<field name="state" widget="statusbar"
statusbar_visible="received,processing,ready,delivered" states="received,processing,ready,delivered"/>
<field name="state" widget="statusbar"
statusbar_visible="received,processing,partially_ready,ready,delivered" states="partially_ready"/>
<field name="state" widget="statusbar"
statusbar_visible="received,processing,ready,partially_delivered,delivered" states="partially_delivered"/>
Basically, I want to show the states partially_ready and partially_delivered in the status bar only when they are highlighted and the rest of the time have a shorter status bar without those intermediates states. But as soon as I set up this code the status bar shows but it does not highlight the adequate states, its all grey no matter which state the model is in. It works completely fine if I set only one statusbar widget in the view, but it does not highlight if there are more than one option even when only one option is visible at any point.
Any solution or idea?
Javier
I'm looking for a way, too? Have you solved it?