Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working with two solutions in Visual Studio. One has a Client class with an Id property. The other solution is a Common solution that runs reports etc. The Common solution does not have access to the Client class.

I am trying to run a report in the ReportViewer using the Client.Id as a parameter. I've set up a SearchBox that displays Clients to choose from once you've typed in some characters. Here are the controls in my xaml file:

<controls:DateTimeView x:Name="startDate"/>
<controls:DateTimeView x:Name="endDate" Grid.Row="1"/>
<controls:SearchBox x:Name="Client"
                    SearchCommand="{Binding DataContext.SearchClientsCommand}"
                    SelectedItem="{Binding Client, ValidatesOnDataErrors=True}"
                    Text="{Binding Client.Name}"
                    Grid.Row="2" />
<controls:StringView x:Name="ClientId" Type="Hidden">
<controls:BooleanView x:Name="showGrayLines" Grid.Row="3"/>

And the parameters that I'm sending to the Common solution are in a dsx file like this:

<DataSource allowOffline="false" sourceType="Xml">    
    <XmlRecordsetPattern>Data</XmlRecordsetPattern>
    <Parameters>
        <Parameter name="startDate" type="Date"/>
        <Parameter name="endDate" type="Date"/>
        <Parameter name="clientId" type="String"/>
        <Parameter name="showGrayLines" type="Boolean" />
    </Parameters>
    <CommandType>StoredProcedure</CommandType>
    <Sql>mvs_GetClientReportXml</Sql>
</DataSource>

The DataContext for the SearchBox needs to be in the first solution so that it has access to the Client class.

The Parameters need to use the ParameterView class in the Common Solution as the DataContext in order to be processed correctly by the Common Solution. So the SearchBox cannot be used as one of the parameters.

My idea was to hide a ClientId control, set it's value when the Client is selected, and send it over without the user seeing it.

My problem is that I'm unable to set the value of the clientId Parameter using the Client.Id that was selected in the SearchBox. For some reason I can't use SelectedValue on the StringView control like I can use SelectedItem for the SearchBox.

I can't find any way to alter the value that the clientId parameter sends to the report other than making it visible and physically typing something different in. I've tried using a Setter, and DataTriggers, and Event Triggers when the Client is selected... I'm just not familiar enough with these controls to know where to go next.

Any help with this would be great, even if it's letting me know that I'm heading in the wrong direction.

Thanks a bunch!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.