hi,<br><br>I have a div with an input type text inside the main map div. <br>The user can edit this input and put the new scale value of the map dynamically.<br><br>the problem is that when I click on the input (to change the scale) it zooms in (zoom is the default control).<br>
<br>As I need to stop propagation I added<br><br>OpenLayers.Event.observe(elem, &quot;mousedown&quot;, block);<br>and the function block which is<br><br>function block(evt) {<br>     OpenLayers.Event.stop(evt);<br>}<br><br>
And now no zooms occurs but I can not change the value of the input text either.<br><br>Any ideas?<br>thanks.<br>