Hi, I know this question may sound vague, but I have been debugging (PHP and js) our application for a day now and have not found any issues in the data generation.
Our application uses xajax to generate lists based on data that we have in our DB. we have a list in particular that works on every other browser: IE 7&8, Firefox 3.0.13(Linux) and 3.5.7 (Win, Mac), Opera (Win), Chrome 4.0.249.30(Linux) and 4.0.249.78 (Win), Safari (Win and Mac). But firefox 3.6 in windows 7 and Mac OS 10.6.2 does not generate this list at all.
When I use firebug the div that contains the list is completely empty
<pre>< div id="listOutput">< /div></pre>
", when in it should contain all the data for the l ist!
I have no idea why this problem could be happening, and any leads in why this may be happening would be of real help
Thank you
<div id = "listOutput" >
<table class="list" >
<tbody >
<tr class="head" >
<th class="noSort checkbox"><input id="selectAllRows" name="selectAllRows" title="Select all" type="checkbox" >< /th >
<th class="ID" onclick="xajax_displayPagination(0, 20, 'id', 'ASC', xajax.getFormValues('pageForm')); xajax_displaySearch(0, 20, 'id', 'ASC', xajax.getFormValues('pageForm')); xajax_displayList(0, 20, 'id', 'ASC', xajax.getFormValues('pageForm'));"><span id="DESC">ID</span></th>
<th class="noSort option">option< /th >
</tr >
</tbody >
</table >
</div >