[mapguide-users] Re: Layer properties problem

Tom Chadwin tom.chadwin at nnpa.org.uk
Fri Apr 9 07:48:33 EDT 2010


Is the problem here in your OnLayerChange() function:

propertySelect.options[i] = new Option(properties[i].name, i, false, false);

You are just passing in the variable i as the value, not the proper value. I
don't know if it is as simple as replacing this line with:

propertySelect.options[i] = new Option(properties[i].name,
properties[i].value, false, false);
-- 
View this message in context: http://n2.nabble.com/Layer-properties-problem-tp4863462p4876607.html
Sent from the MapGuide Users mailing list archive at Nabble.com.


More information about the mapguide-users mailing list