javascript 呼び出しから Dojo Dijit を削除する方法
次のコードを、dijit や dojo を使用したくない html 選択のみを使用するように変更するにはどうすればよいですか?
<script type="text/javascript">
Spring.addDecoration(new Spring.ElementDecoration({
elementId : "borough",
widgetType : "dijit.form.Select",
widgetAttrs : {
promptMessage : "Enter Borough",
required : true,
onChange : function() {
Spring.remoting.submitForm(
'submit',
'member',
{_eventId: 'loadSchools', fragments:'contents'}
);
return false;
} }}));
</script>