I have the following select dropdown:
<div data-dojo-type="dijit/layout/ContentPane" id="legendPane" data-doprops="title:'Monuments', selected:true" >
<select id="selSection" data-dojo-type="dijit/form/Select">
<option value="0">Section</option>
<option value="1">Gulf of Maine</option>
<option value="2">Passamaquoddy Bay</option>
<option value="3">St. Croix River</option>
<option value="4">North Line</option>
<option value="5">St. John River</option>
<option value="6">St. Francis River</option>
<option value="25">The 49th Parallel, Columbia Valley to Pacific</option>
</select>
</div>
And I have the following on-event:
var selSec = registry.byId("selSection");
on(selSec, "Change", function(evt) {
alert("test");
});
But it doesn't seem to do anything. Where Am I going wrong? Thanks, Gido