radio buttons
Radio buttons can be used as an alternative to select for selecting an entity from a list of entities. The name property, or the property with name annotation, will be used as a label for the corresponding radio button.
entity Person{
name :: String
parent -> Person
}
define page editPerson(p:Person){
radio(p.parent, getPersonList())
}
radio buttons