Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - Dependent databinds (series of combos)

 
 
Old 12-13-2006   #1 (permalink)
Keith Patrick


 
 

Dependent databinds (series of combos)

I have an app with a series of combo boxes. The general idea is that you
select the first one, and that creates a parameter that feeds the next
combo, and so forth. They're all fed from a single XML datasource, and I
have no problem feeding the first combo. What I'm hung up on is how to have
the selection of the first trigger the 2nd combo to rebind using hte
parameter from the first in the XPath for the 2nd. Is this possible just in
markup, or do I need to tie the combos together via in-code event handlers?



My System SpecsSystem Spec
Old 12-13-2006   #2 (permalink)
Laurent Bugnion


 
 

Re: Dependent databinds (series of combos)

Hi,

Keith Patrick wrote:
> I have an app with a series of combo boxes. The general idea is that you
> select the first one, and that creates a parameter that feeds the next
> combo, and so forth. They're all fed from a single XML datasource, and I
> have no problem feeding the first combo. What I'm hung up on is how to have
> the selection of the first trigger the 2nd combo to rebind using hte
> parameter from the first in the XPath for the 2nd. Is this possible just in
> markup, or do I need to tie the combos together via in-code event handlers?


I thought it over and so far I don't see a solution with markup only.
Event handling is probably the one functionality where code-behind is
pretty much irreplacable. Is it a big problem for you to use code-behind?

Greetings,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
PhotoAlbum: http://www.galasoft-LB.ch/pictures
Support children in Calcutta: http://www.calcutta-espoir.ch
My System SpecsSystem Spec
Old 12-13-2006   #3 (permalink)
Keith Patrick


 
 

Re: Dependent databinds (series of combos)

Only problem I've been having is explicitly refreshing the datasource. I've
tried XmlDataProvider.Refresh() as well as XmlDataProvider.InitialLoad(),
but they won't update, so I was hoping to let the underlying runtime do
whatever it does the correct way to get the data updated.


My System SpecsSystem Spec
Old 12-15-2006   #4 (permalink)
Keith Patrick


 
 

Re: Dependent databinds (series of combos)

It looks like I can do this declaratively using MultiBindings (the first
binding is to the XML, and the additional ones are for each combobox the
declared combo's filtering depends on). The only code I have to write is a
custom IMultiValueConverter to take the SelectedValues from the bindings &
do a String.Format with them & the XPath



My System SpecsSystem Spec
Old 12-18-2006   #5 (permalink)
Keith Patrick


 
 

Re: Dependent databinds (series of combos)

Multibindings are actually overkill here. This is my solution, whereby the
combos all just talk in XML, such that the dependent relationship is
implicit in the hierarchical structure of the source XML. Any further
dependencies would then depend on ChildCombo, GrandChildCombo, etc.:

<StackPanel>
<ComboBox Name="ParentCombo"
ItemsSource="{Binding Source={StaticResource
XmlSource}, XPath=//Root/Parents/Parent}"
ItemTemplate="{StaticResource NamedXmlControl}"/>
<ComboBox Name="ChildCombo"
ItemsSource="{Binding ElementName=ParentCombo,
Path=SelectedItem, XPath=Children/Child}"
ItemTemplate="{StaticResource NamedXmlControl}"/>
</StackPanel>

where
<DataTemplate x:Key="NamedXmlControl">
<TextBlock Text="{Binding XPath=@Name}"/>
</DataTemplate>
<XmlDataProvider x:Key="XmlSource" .../>


My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
Dependent dynamic dropdown lists-3 levels VB Script
Anyone experiencing wheel problems in MS Wireless Laser mouse/keyboard combos? Vista hardware & devices
Powershell and loading dependent assemblies PowerShell
Application-dependent internet speeds Vista networking & sharing


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46