I have multiple feature layers on the map, and I wish to display a different sized infoWindow for each layer.
As far as I can tell, the map has one infoWindow, which can be resized using:
map.infoWindow.resize(width,height)
Each feature layer then provides the infoTemplate which contains the Title and Content, but no sizing information (right?).
How can I show a large infoWindow when clicking on FeatureLayer1, and a small infoWindow when clicking on FeatureLayer2?

