New Posts New Posts RSS Feed: Problem with radio buttons
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

Problem with radio buttons

 Post Reply Post Reply
Author
BillG View Drop Down
DevForce MVP
DevForce MVP
Avatar

Joined: 05-Dec-2007
Location: Monroe, MI
Posts: 233
Post Options Post Options   Quote BillG Quote  Post ReplyReply Direct Link To This Post Topic: Problem with radio buttons
    Posted: 21-May-2009 at 9:02am
I have 3 group boxes on a form.
 
BuildingInfoGroupBox
AssociationGroupBox
TypeGroupBox
 
Here is the code in my FormLoad()

ViewDescriptor buildingInfoViewDescriptor = new ViewDescriptor(EntityPropertyDescriptors.EmployerChangeRecord.BuildingInfo);

EmployerChangeFormCBM.Descriptors.AddGroup(BuildingInfoGroupBox, buildingInfoViewDescriptor);

ViewDescriptor associationViewDescriptor = new ViewDescriptor(EntityPropertyDescriptors.EmployerChangeRecord.Association);

EmployerChangeFormCBM.Descriptors.AddGroup(AssociationGroupBox, associationViewDescriptor);

ViewDescriptor typeViewDescriptor = new ViewDescriptor(EntityPropertyDescriptors.EmployerChangeRecord.Type);

EmployerChangeFormCBM.Descriptors.AddGroup(TypeGroupBox, typeViewDescriptor);

When I click on a button in one group the clicked button in another group goes away.  What am I doing wrong?
 
Back to Top
BillG View Drop Down
DevForce MVP
DevForce MVP
Avatar

Joined: 05-Dec-2007
Location: Monroe, MI
Posts: 233
Post Options Post Options   Quote BillG Quote  Post ReplyReply Direct Link To This Post Posted: 03-Jun-2009 at 8:21am
Found the problem, several of the radio buttons were missing tag values.
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down