I have a find task in my application that returns features that are points, lines and polygons. I can get the search to populate the datagrid but I am having problems with my onRowClickHandler function and zooming to those features from the datagrid. I've been searching through the forums and see that zooming to a point from the datagrid has been an issue for others, but I can't find a solution that works for me. Here is some code that shows the findtask and what I have for the onRowClickHandler function. I get the error: "Uncaught TypeError: Cannot read property 'getExtent' of undefined" when the onRowClickHandler function is fired.findDistrictTask = new FindTask("http://summitgis.summitoh.net:6080/arcgis/rest/services/DOES/MapServer/"); map.on("load", function () { findDistrictParams = new FindParameters(); findDistrictParams.returnGeometry = true; findDistrictParams.layerIds = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; findDistrictParams.searchFields = ["NAME, UNAME, PUMPID, PIPEID, PlantID, Name"]; findDistrictParams.outSpatialReference = map.spatialReference; }); function doDoesDistrictFind() { findDistrictParams.searchText = dom.byId("doesDistrictText").value; findDistrictTask.execute(findDistrictParams, showResults); } function showResults(results) { var markerSymbol = new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_SQUARE, 10, new SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_SOLID, new dojo.Color([255, 0, 0]), 1), new dojo.Color([0, 255, 0, 0.25])); var lineSymbol = new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_DASH, new dojo.Color([255, 0, 0]), 1); var polygonSymbol = new esri.symbol.SimpleFillSymbol(esri.symbol.SimpleFillSymbol.STYLE_NONE, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.STYLE_DASHDOT, new dojo.Color([255, 0, 0]), 2), new dojo.Color([255, 255, 0, 0.25])); map.graphics.clear(); var dataForGrid = []; arrayUtils.map(results, function (result) { var graphic = result.feature; dataForGrid.push([result.layerName, result.foundFieldName, result.value]); switch (graphic.geometry.type) { case "point": graphic.setSymbol(markerSymbol); break; case "polyline": graphic.setSymbol(lineSymbol); break; case "polygon": graphic.setSymbol(polygonSymbol); break; } map.graphics.add(graphic); }); var data = { items: dataForGrid }; var store = new ItemFileReadStore({ data: data }); var grid = registry.byId("grid"); grid.setStore(store); grid.on("rowclick", onRowClickHandler); map.centerAndZoom(center, zoom); } function onRowClickHandler(evt) { var clickedFeature = evt.grid.getItem(evt.rowIndex).OBJECTID; var selectedFeature = arrayUtils.filter(map.graphics.graphics, function (graphic) { return ((graphic.attributes) && graphic.attributes.OBJECTID === clickedFeature); }); var featureExtent = selectedFeature.geometry.getExtent(); var screenpoint = map.toScreen(selectedFeature.geometry.getExtent().getCenter()); var mappoint = map.toMap(screenpoint); map.centerAt(mappoint); if (selectedFeature.geometry.declaredClass == 'esri.geometry.Point') { map.centerAt(selectedFeature.geometry); } else { var featureExtent = selectedFeature.geometry.getExtent(); var screenpoint = map.toScreen(selectedFeature.geometry.getExtent().getCenter()); var mappoint = map.toMap(screenpoint); map.centerAt(mappoint); } } Does anyone have any idea what I am doing wrong or a way to zoom to all feature types from a datagrid? Thanks in advance!!!