New Posts New Posts RSS Feed: Drop Down, ComboBox bindings and interdependencies
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

Drop Down, ComboBox bindings and interdependencies

 Post Reply Post Reply
Author
jeffk View Drop Down
Newbie
Newbie
Avatar

Joined: 20-Nov-2008
Location: Atlanta
Posts: 4
Post Options Post Options   Quote jeffk Quote  Post ReplyReply Direct Link To This Post Topic: Drop Down, ComboBox bindings and interdependencies
    Posted: 26-Nov-2009 at 6:53am
you can use silverlight element binding to link the selection of one combobox to another.  for example, here would be the "parent" combobox.

<telerikInput:RadComboBox

x:Name="rcbPartyEmployer"

ItemsSource="{Binding Companies}"

SelectedItem="{Binding SelectedContact.TheContactEmployer, Mode=TwoWay}"

DisplayMemberPath="PartyName" />

and here would be the "child" combobox where it's ItemsSource property is bound to the SelectedItem property of the parent.
 

<telerikInput:RadComboBox

x:Name="rcbPartyManager"

ItemsSource="{Binding SelectedItem.TheOrganizationContacts, ElementName=rcbPartyEmployer}"

SelectedItem="{Binding SelectedContact.ThePartyManager, Mode=TwoWay}"

DisplayMemberPath="PartyName" />

you will have to decide on how you are going to do the data retrieval to make this work.  i found it easier to include the child properties in the query for the parent ItemsSource so you don't have to deal with asyncronous data loading but YMMV.
 
hope this helps,
jeff
Back to Top
GregD View Drop Down
IdeaBlade
IdeaBlade
Avatar

Joined: 09-May-2007
Posts: 374
Post Options Post Options   Quote GregD Quote  Post ReplyReply Direct Link To This Post Posted: 25-Nov-2009 at 3:14pm
Just affirming that this is a Silverlight and UI-databinding and/or UI-architecture question, not specific to DevForce. Perhaps someone else will jump in with assistance.

Back to Top
manishaudio View Drop Down
Newbie
Newbie


Joined: 24-Nov-2009
Posts: 8
Post Options Post Options   Quote manishaudio Quote  Post ReplyReply Direct Link To This Post Posted: 24-Nov-2009 at 6:27am
Most of the tutorials I see on Silverlight data binding are very simplistic in nature.  I have an application where I have Locations, Buildings, Rooms and Assets.   What I am working on now and having some issues with is an Asset Editor screen whereby the choice of a location will drive the building choices, which in turn will drive Room choices.   If you good folks could give me some pointers on how to do that, I'd appreciate it.  I know that the plumbing is all there in that collections were already nicely generated by the Ideablade entity manager.  This may be more of a SL question.
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down