Hi.
i push this thread because ive the same problem but i cant find out any solution.
its a grid, with smart rendering. But every view with more than 50 records produce the error
Uncaught TypeError: Cannot read property '_locator' of undefined
My grid:
grpManGrid = admTab.cells("grpMan").view("content").attachGrid();
		grpManGrid.enableContextMenu(grpMenu);
		grpManGrid.setHeader("Typ,Sichtbar,Nummer,Anlagedatum, img:[" + cfg.flagPath + "flag_de.png] Bezeichnung,img:[" + cfg.flagPath + "flag_fr.png] Bezeichnung, img:[" + cfg.flagPath + "flag_en.png] Bezeichnung, img:[" + cfg.flagPath + "flag_nl.png] Bezeichnung, <center>Gruppe/Typ</center>, Tags, img:[" + cfg.dhxIconPath + "img.png], img:[" + cfg.dhxIconPath + "txt.png], img:[" + cfg.dhxIconPath + "dwn.png], img:[" + cfg.dhxIconPath + "email.png], img:[" + cfg.dhxIconPath + "link.png]"); 
		grpManGrid.setDragText("Element", "Elemente");
		grpManGrid.setSkin("dhx_skyblue");
		grpManGrid.setIconsPath(cfg.dhxIconPath);
		grpManGrid.setColTypes("img,ch,ro,ro,ro,ed,ed,ed,ro,img,ro,ro,ro,ro,ro"); 
		grpManGrid.setInitWidths("40,60,100,100,*,*,*,*,120,40,40,40,40,40,40");
		grpManGrid.setColAlign("center,center,left,left,left,left,left,left,left,center,center,center,center,center,center");
		grpManGrid.setColSorting("na,str,str,date,str,server,str,server,server,na,int,int,int,int,int");
		grpManGrid.attachHeader("#rspan,#rspan,#text_filter,#rspan,#text_filter,#text_filter,#text_filter,#text_filter,#select_filter,#rspan,#rspan,#rspan,#rspan,#rspan,#rspan");
		grpManGrid.enableTooltips("true,false,false,false,true,true,true,true,true");
		grpManGrid.enableMercyDrag(true);
		grpManGrid.enableDragAndDrop(true);
		grpManGrid._drag_validate = false;											// Erlaubt DnD in der gleichen Zeile
		grpManGrid.enableRowsHover(true, "hover");
		grpManGrid.enableMultiselect(true);
		grpManGrid.enableSmartRendering(true);
		grpManGrid.init();
		grpManGrid.loadXML(con.grpQList);
		grpManGrid.modId = "grp";
if i rewrite #select_filter to #text_filter it works fine, but it is not what i want to do.
could somebody help me?
regards
kai