> I thought 
> 
> MyMap.events.register("loadend", layers[0], 
> selectFeature(layers[0],oFeatures[0].fid));
> 

I at least learned that a loadend is only registerable on a layer, so :

layers[0].events.register("loadend", layers[0],
selectFeature(layers[0],oFeatures[0].fid));

It still does not show anything though.  However, just to test that I
did get a loadend event, I tried :

layers[0].events.register("loadend", layers[0], function()
{alert("Highlight on"); });

And I got the alert, so it means the loadend event is triggered.  Why my
function call does not work is beyond me.

TIA,

Yves

_______________________________________________
Users mailing list
[email protected]
http://openlayers.org/mailman/listinfo/users

Reply via email to