You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
552 B
9 lines
552 B
<div data-dojo-id="stateStore" data-dojo-type="dojo/data/ItemFileReadStore" data-dojo-props='url:"../_data/states.json"'></div> |
|
State: |
|
<span id="editable" data-dojo-type="dijit/InlineEditBox" data-dojo-props='editor:"dijit/form/ComboBox", |
|
editorParams:{value: "California", store: stateStore, searchAttr: "name", promptMessage: "Please enter a state"}'> |
|
<script type="dojo/on" data-dojo-event="change"> |
|
// connect to editable onChange event, Note that we don't need to disconnect |
|
console.log('User selected:'+this.getValue()); |
|
</script> |
|
</span>
|
|
|