Posted by arasu siva
on 30.04.2007 21:07
I am new to this rico grid.

Iam creating grid using

ricoGrid1=new Rico.LiveGrid ('ricoGrid1',new Rico.GridMenu(), new 
Rico.Buffer.Base($('ricoGrid1').tBodies[0]), opts);

where ricoGrid1 is the table id. This i used to create a grid with 
prepopulated data. Works fine. I tried creating table with dynamic 
loading using onscroll with the following code..

var opts = {   prefetchBuffer: true, onscroll : updateLabel };
var liveGrid = new Rico.LiveGrid( 'ricoGrid1',20,3 , 'response.php', 
opts);

function updateLabel( liveGrid, offset ) {
$('showingLabel').innerHTML = "Showing " + (offset+1) + " - " +
	    	    (offset+liveGrid.metaData.getPageSize()) + " of " +
		        liveGrid.metaData.getTotalRows() + " records";
}
its not creating a grid.. its throwing an error at ricoLiveGrid.js at 
line number 250 stating that buffer.options.canfilter is null. can 
anyone help me out?
Posted by ALan Cheung
on 10.05.2007 10:23
I've got the same problem.

Line: 251
Char: 5
Error: 'options.canFilter' is null or not an object
Code: 0

Did you resolve the problem yet?
Would you please tell me the solution if you did?