<p>Hi.</p>
<p>I have a vector layer with some data clustered, I can create a label with the number of items at a point with the code below</p>
<p>I am having problems in IE8 using the selectfeature event as the label takes the select event and does not seem to pass it down to the icon. I can get <br>
the event fired if I click just outside the label otherwise I cannot get the even fired</p>
<p>Any ideas on this?</p>
<p>It works fine on FF! but I must get it working in IE8</p>
<p>Thanks,<br>
J</p>
<p> var vecdata_clustered_rule = new OpenLayers.Rule({filter: new OpenLayers.Filter.Comparison({type: OpenLayers.Filter.Comparison.GREATER_THAN,<br>
                                   property: &#39;count&#39;,<br>
                                   value: 1<br>
                               }),<br>
              symbolizer: {&#39;fillColor&#39;: &#39;#377EB8&#39;,<br>
                  &#39;fillOpacity&#39;: 0.8,         <br>
                  &#39;strokeWidth&#39;: 0,          <br>
                  &#39;pointRadius&#39;: 6,<br>
                  &#39;label&#39; : &#39;${count}&#39; , //<br>
                  &#39;fontWeight&#39; : &#39;bold&#39; ,<br>
                  &#39;graphicName&#39; : &#39;circle&#39;}<br>
              });</p>
<p> </p>
<p>var sel_feat_q = new OpenLayers.Control.SelectFeature(vec_data_q,{multiple: true,  toggle: true });<br>
map.addControl(sel_feat_q); <br>
sel_feat_q.activate();<br>
vec_data_q.events.register(&#39;featureselected&#39;, this,displayinfo) ;</p>