I have the following dashboard table: <table>
<title>messageIdTok=$messageIdTok$ userIdTok=$userIdTok$ subjectTok=$subjectTok$</title>
<search base="baseSearch">
<que...
See more...
I have the following dashboard table: <table>
<title>messageIdTok=$messageIdTok$ userIdTok=$userIdTok$ subjectTok=$subjectTok$</title>
<search base="baseSearch">
<query>| search subject="*$subjectTok$*" UserId="$userIdTok$" ipAddress="$ipAddressTok$" messageId="$messageIdTok$" | table _time,UserId,subject,Operation,messageId,ClientInfoString,ipAddress</query>
</search>
<option name="count">10</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">cell</option>
<option name="percentagesRow">false</option>
<option name="rowNumbers">false</option>
<option name="totalsRow">false</option>
<option name="wrap">true</option>
<drilldown>
<condition field="subject">
<set token="subjectTok">$row.subject$</set>
<set token="messageIdTok">*</set>
<set token="userIdTok">*</set>
<set token="ipAddressTok">*</set>
</condition>
<condition field="messageId">
<set token="messageIdTok">$click.value$</set>
<set token="subjectTok">*</set>
<set token="userIdTok">*</set>
<set token="ipAddressTok">*</set>
</condition>
<condition field="UserId">
<set token="messageIdTok">*</set>
<set token="subjectTok">*</set>
<set token="userIdTok">$row.UserId$</set>
<set token="ipAddressTok">*</set>
</condition>
</drilldown>
</table> In the "messageId" drilldown condition, i'm using $click.value$. But when I do this, clicking the cell always sets the messageIdTok to the value in the first column (_time in this case). I also notice that when i have table option "drilldown" set to "cell", moving the mouse over the table always highlights the cell I'm hovering over as well as the first cell of that row (video here). Any suggestions on how to correct this behavior?