On Tue, Jul 01, 2008 at 06:15:19PM +1000, Bluebie, Jenna wrote:
> check and radio both respond to 'checked?' and 'checked=' calls, which work
> just as you'd expect, boolean getters and setters. As for how to group
> them, I have no idea. _why?
Right, so, like jerry said, radio buttons that share the same slot
(stack or flow) are in the same group. I will go through all the
platforms and figure out where I am.
Shoes.app do
stack do
flow { radio; para "Item 1.1" }
flow { radio; para "Item 1.2" }
flow { radio; para "Item 1.3" }
end
stack do
flow { radio; para "Item 2.1" }
flow { radio; para "Item 2.2" }
flow { radio; para "Item 2.3" }
end
end
_why