I have a map page using the EXT_JS demo that is giving me a problem.If you look at the demo onhttp://help.arcgis.com/en/webapi/javascript/arcgis/demos/framework/framework_extjslayout.html The left panel collapses and expands, but the state change throws my identify click off by the width horizontally of my expanded panel.{
region: "west",
title: "Map Content"
width: 200,
split: true,
collapsible: true,
contentEl: "west"
listeners: {
collapse: function(){if (map) {map.resize();}}
}
}I have another panel in the "east" which resizes just fine but does not throw the horizontal measure off for the mouse down event on the map panel.Does anyone know a work around or method which I can employ?Andy..