[IronPython] WPF / ipy: renewing data binding? Could use some guidance.

2010-08-18 Thread Ken MacDonald
I have inherited a WPF/ipy app which is using data binding / CollectionView to interact with a customer list. Steps are roughly: 1. query cust. list from DB, sorted by name 2. bind this to a CollectionView 3. step through the list, displaying 1 cust. at a time using the CollectionView.Next/Previou

Re: [IronPython] WPF / ipy: renewing data binding? Could use some guidance.

2010-08-18 Thread Lukas Cenovsky
Have you tried manually refreshing the CollectionView after update by CollectionView.Refresh()? -- -- Lukás( On 18.8.2010 17:35, Ken MacDonald wrote: I have inherited a WPF/ipy app which is using data binding / CollectionView to interact with a customer list. Steps are roughly: 1. query cu

Re: [IronPython] WPF / ipy: renewing data binding? Could use some guidance.

2010-08-18 Thread Ken MacDonald
Yep. seems to have no effect. Ken On Wed, Aug 18, 2010 at 12:15 PM, Lukas Cenovsky wrote: > Have you tried manually refreshing the CollectionView after update by > CollectionView.Refresh()? > > -- > -- Lukáš > > > > On 18.8.2010 17:35, Ken MacDonald wrote: > > I have inherited a WPF/ipy app whic