I'm using a DataView web part, and have what are hopefully easy
questions...
I want to display Compounds and the child Protocols in
one "selector" web part, and when the user clicks on a protocol, the
other web part should show the proper graph.
I've made several attempts, but I can't figure out how to:
1) Make the ProtocolName show up in the web part connection options
(only CompoundName does)
2) Make the ProtocolName clickable for the connection (only
CompoundName is a choice)
Here are the guts of my simple XML data source files:
<ProtocolSelector xmlns="https://hostname/sites/sitename/Shared%
20Documents/ProtocolSelector.xsd">
<Compound CompoundName="Compound1">
<Protocol ProtocolName="Protocol1" />
<Protocol ProtocolName="Protocol2" />
</Compound>
<Compound CompoundName="Compound2">
<Protocol ProtocolName="Protocol3" />
</Compound>
</ProtocolSelector>
<ProtocolSummary xmlns="https://hostname/sites/sitename/Shared%
20Documents/ProtocolSummary.xsd">
<Protocol ProtocolName="Protocol1" ProtocolGraph="../Shared%
20Documents/Graphs/Protocol1Graph.gif" />
<Protocol ProtocolName="Protocol2" ProtocolGraph="../Shared%
20Documents/Graphs/Protocol2Graph.gif" />
<Protocol ProtocolName="Protocol3" ProtocolGraph="../Shared%
20Documents/Graphs/Protocol3Graph.gif" />
</ProtocolSummary>