I have a databinding for the grid with observable collection. as following
DataSource="{Binding Source={StaticResource odpObjectDataProvider1}, Path=LoadData()}";
on some action i have to change the source to another temporarycollecgtion as following
DataSource="{Binding Source={StaticResource odpObjectDataProvider1}, Path=LoadTemporaryData()}";
how can i change the binding source dynamically?
kornel
I'd have thought that it would be better to change the bindings in code on event handlers?