Hi there! I've been using JDataTable for a few months now and love it. Finally got all the kinks worked out. We are now trying to add a graphical portion to the tables by using JData Visualizer, but I'm having a very hard time getting it to run. The js script keeps crashing.
I am using Joomla 1.5.14, with PHP 5.2.6. I get the message:
"A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
Script:
localhost/DCCRM/plugins/content/arismartcontent/content/ari_jdata_visualizer4a9d83f9d816d/js/visualize.jQuery.js:11"
With a choice of stopping the script or continuing to wait. This is in Firefox 3.5.4, if it helps.
The following code will bring up a graph, but with the data not appearing properly. I know this is because the data is listed vertically, not horizontally:
{tbs}script=./scripts/reports10.php{/tbs}
<h3>Sales Trend Report</h3>
{arijdatavisualizer type="line" hideTable="false"} {arijdatatable bPaginate="true"}
<table style="text-align: center;" align="center" border="0">
<thead style="text-align: left;">
<tr style="text-align: left;">
<th>Months</th> <th>Revenue</th>
</tr>
</thead>
<tbody style="text-align: left;">
<tr style="text-align: left;">
<td style="text-align: left;">[u.date;block=tr]</td>
<td style="text-align: left;">$[u.SUM(value)]</td>
</tr>
</tbody>
</table>
{/arijdatatable} {/arijdatavisualizer} <br /><br />
This is the result: