15
Version 1.6 of the livegrid is available for download. This fixes an issue with get MaxFetchSize (thanks to Duane Fields for reporting this issue)
8 Responses to “Livegrid 1.6 bugfix release”
Al says:
Sep 22, 2006
I think there might be a bug in the 1.6 version of the LiveGrid script. On line 730, the script tries to instantiate a new LiveGridSort object. However, this clas doesn’t seem to be defined anywhere, so the script fails.
Russell says:
Nov 9, 2006
Auto row height seems to be broken… Take a look at the yahoo demo: http://blog.ilikeu2.nl/demo/yahoo.html
It will report that it is displaying rows 1-5, yet 6 are displayed. I am having the exact same experience with my site. I see 1 more row than I set in the LiveGrid visibleRows parameter. Also, when I scroll to the end, I lose the last row.
Any help is GREATLY apreciated. (Excellent library, BTW!)
-Russell
kenji says:
Nov 29, 2006
hi,
you did surely a great job. congratulations.
although, I am facing a little problem here. Sometimes, using the mouse wheel, the table goes blank, than I roll it 1 knot and the table appears. I would check the events.
the spinner image sometimes remains too.
any idea? thanks in advance
Russell says:
Dec 20, 2006
I have identical issues!
I fixed the spinner with the following:
var laodingCount = 0;
var myGridUpdater;
function onBodyLoad(){
var opts = {
….
onscroll: updateTopicsGridHeader,
onLoading: function() { laodingCount=laodingCount+1; if (laodingCount>0) $(‘spinner’).style.display = ”; },
onComplete: function() { laodingCount=laodingCount-1; if (laodingCount
Russell says:
Dec 20, 2006
part 2:
onComplete: function() { laodingCount=laodingCount-1; if (laodingCount
Hinnack says:
Feb 22, 2007
do you know LiveGrid Plus?
http://dowdybrown.com/dbprod/rico-test7/php/demo-autosize2.php
