Hi
I've created a crosstab and would like to add a blank row before and a blank row after certain rows based on their contents.
I've managed to get this far - the example is looking for a row that contains Net Current Assets:
select 'dbr.javascript'," var rind = $('tr td:contains(\"Net Current Assets\")').closest(\"tr\").index(\"tr\"); $('tbody > tr:nth-child('+rind+')').after('<tr></tr>'); ";
I believe I'm getting the index of the row ok it's just the adding of the rows where nothing is happening.
Any thought?
Thanks
Jake