Jaymer wroteThat’s awesome.
I had that question and problem three years ago, with no solution. So I gave up on custom queries for a long time. Thanks
PS. How many more these goodies can you dig up?
Jaymer, have you had any luck with this?
I tried it and just get repeating headers on each line still.
Here is what I have for my HTML:
<thead>
<tr>
<th>Client Name</th>
<th>Case ID</th>
<th>Case Type</th>
<th>Date Filed</th>
</tr>
</thead>
<tbody>
<tr>
<td>{ClientName}</td>
<td>{CaseID}</td>
<td>{CaseTypeDescription}</td>
<td>{DateFiled}</td>
</tr>
</tbody>
And here is the script I put in:
var oldHandler = config.dataBound;
config.dataBound = function (e)
{
oldHandler (e);
var widgetElem = $("#" + parser.m_widgetInfo.markupId)[0];
widgetElem.innerHTML = "<table class="blueTable"> ++ widgetElem.innerHTML + "</table>";
}