If you want to render a Combogrid with 1000+ rows, I can suggest you just do the following :
1. Put the mode as 'remote' not 'local'
2. Now get the remote JSON formatted data by filtering the selection based on your keypressed character as follows:
<?php
include 'dbconfig.php';
[color=red]$q = isset($_POST['q']) ? strval($_POST['q']) : '';
$sql = "select * from section where section like '%$q%' ORDER BY deptcode, secode2";[/color]
$rs = mysql_query($sql) or die('not found!');
if ($rs){
$items = array();
while($row = mysql_fetch_object($rs)){
array_push($items, $row);
}
$result["rows"] = $items;
echo json_encode($result);
} else {
echo json_encode(array('msg'=>'No section allocated with this user!'));
}
?>
See the red colored code for filtering remote rows.
And if you want to use ComboGrid as datagrid cell editor, this is same as you do in case of combobox, nothing special, same way you can define the editor as ComboGrid.