id summary reporter owner description type status priority milestone component version severity resolution keywords cc browser external_id os state 89 Search panel: incorrect parameters javascript calls pagameba madair@… "Reported by Rémy, filed in mapguide trac as: http://trac.osgeo.org/mapguide/ticket/630 This appears to be a copy/paste error when we brought the search panel over, to be fixed in 1.0 and trunk. -- I found a fix that worked. First, looking at widgets/Search/Search.templ: {{{ function CellClicked(sel) { var map = GetParent().Fusion.getMapByName(mapName); map.setSelection(sel, false, true); } }}} Should be changed like this to match correctly the API: {{{ function CellClicked(sel) { var map = GetParent().Fusion.getMapByName(mapName); map.setSelection(sel, true); } }}} Second, the call to setSelection from map object is (lib/Map.js): {{{ setSelection: function(selText, requery, zoomTo) { for (var i=0; i