This question is locked. New answers and comments are not allowed.
Okay so I have a combo box grid column which reads a list of values via ria services. I have some pick list values that are bound to the column, however these values also have a company identifier [companyguid], therefore when the user selects the dropdown box I want to only show the pick list values that relate to the company selected in the current row. So I have tried to add a FilterDescriptor with the Path=SelectedItem.companyguid as the filter but no luck it brings up an error.
<riacontrols:DomainDataSource x:Key="ddsCategories" LoadSize="50" QueryName="GetReviewCategories" AutoLoad="True"> <!--<riacontrols:DomainDataSource.FilterDescriptors> <riacontrols:FilterDescriptor PropertyPath="companyguid" Operator="IsEqualTo" Value="{Binding ElementName=radGridView1, Path=SelectedItem.companyguid }" /> </riacontrols:DomainDataSource.FilterDescriptors>--> <riacontrols:DomainDataSource.DomainContext> <ds:AppDomainContext /> </riacontrols:DomainDataSource.DomainContext>