Thanks Tanefo. I made some progress on this but still need some help. How can i take the row value pull up the chart ?
Taking the same example mentioned above ....
Table 1 (main table )
Input ------- Count
Source 1 ---- 2
Source 2 ---- 3
<table>
<title>TABLE1</title>
<searchString>bla bla bla Table Input, Count </searchString>
<earliestTime>$field1.earliest$</earliestTime>
<latestTime>$field1.latest$</latestTime>
<drilldown>
<condition field="count">
<set token="TABLE1_TOKEN">$click.name$</set> <!-- Value of TABLE1_TOKEN will be "Source1" -->
</condition>
<condition field="count">
<set token="TABLE2_TOKEN">$click.name$</set> !-- Value of TABLE1_TOKEN will be "Source2 -->
</condition>
</drilldown>
<option name="wrap">true</option>
<option name="rowNumbers">false</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">cell</option>
<option name="count">10</option>
</table>
So to pop up Table 2 can we do some thing like this ?
<table depends="$Table2_TOKEN$"> <!-- should be like <table depends if("$Table2_TOKEN$"=="Source1")> -->
<title>Table2</title>
<searchString>bla bla bla | Table Name, ErrorMesage</searchString>
<earliestTime>$field1.earliest$</earliestTime>
<latestTime>$field1.latest$</latestTime>
<option name="wrap">true</option>
<option name="rowNumbers">false</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">cell</option>
<option name="count">10</option>
<table>
Table 2 (gives me info about Source1)
Name ------- ErrorMessage
test1.xml ----- Bad XML file
test2.xml ----- No Source Found
similarly for Table 3, we should have our XML some thing like this
<table depends="$Table3_TOKEN$"> <!-- should be like <table depends if("$Table3_TOKEN$"=="Source2")> -->
<title>Table3</title>
<searchString>bla bla bla | Table Name, ErrorMesage</searchString>
<earliestTime>$field1.earliest$</earliestTime>
<latestTime>$field1.latest$</latestTime>
<option name="wrap">true</option>
<option name="rowNumbers">false</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">cell</option>
<option name="count">10</option>
<table>
Table 3 (gives me info about Source2)
Name ------- ErrorMessage
test3.xml ----- No profile found
test4.xml ----- No profile found
test5.xml ----- No profile found
... View more