Updated
This commit is contained in:
58
master/examples/demo_QueryReadStore_ComboBox.html
Normal file
58
master/examples/demo_QueryReadStore_ComboBox.html
Normal file
@@ -0,0 +1,58 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Dojox QueryReadStore+ComboBox Demo</title>
|
||||
<style type="text/css">
|
||||
@import "../../../dijit/themes/tundra/tundra.css";
|
||||
@import "../../../dojo/resources/dojo.css";
|
||||
@import "../../../dijit/tests/css/dijitTests.css";
|
||||
</style>
|
||||
|
||||
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: true"></script>
|
||||
</head>
|
||||
<body class="tundra">
|
||||
|
||||
<h1 class="testTitle">Dojox QueryReadStore + ComboBox demo</h1>
|
||||
|
||||
<h2>Everything is created ONLY in markup</h2>
|
||||
<div class="dijitContainer">
|
||||
<div style="float:left;">
|
||||
<div dojoType="dojox.data.QueryReadStore"
|
||||
jsId="store1"
|
||||
url="../tests/stores/QueryReadStore.php"
|
||||
requestMethod="post"></div>
|
||||
<div dojoType="dijit.form.ComboBox" id="cb1" store="store1" pageSize="10" autoComplete="false"></div>
|
||||
<button dojoType="dijit.form.Button" onclick="dijit.byId('cb1').reset()">reset</button>
|
||||
</div>
|
||||
<div style="float:left; margin-left:5em;">
|
||||
var w = dijit.byId("cb1");
|
||||
<br /><input id="value1" type="text" /> = w.value
|
||||
<br /><input id="itemId1" type="text" /> = w.item ? w.store.getValue(w.item, "id") : "-"
|
||||
<br /><input id="displayedValue1" type="text" /> = w.attr("displayedValue")
|
||||
<br /><input id="isValid1" type="text" /> = w.isValid()
|
||||
<br /><button dojoType="dijit.form.Button" onclick="refresh1()">refresh</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
dojo.require("dojox.data.QueryReadStore");
|
||||
dojo.require("dijit.form.ComboBox");
|
||||
dojo.require("dijit.form.Button");
|
||||
|
||||
var w = null;
|
||||
var refresh1 = function() {
|
||||
dojo.byId("value1").value = w.value;
|
||||
dojo.byId("itemId1").value = w.item ? w.store.getValue(w.item, "id") : "-";
|
||||
dojo.byId("displayedValue1").value = w.attr("displayedValue");
|
||||
dojo.byId("isValid1").value = w.isValid();
|
||||
};
|
||||
dojo.addOnLoad(function() {
|
||||
w = dijit.byId("cb1");
|
||||
dojo.connect(w.domNode, "onkeyup", refresh1);
|
||||
dojo.connect(w, "onBlur", refresh1);
|
||||
dojo.connect(w, "onChange", refresh1);
|
||||
refresh1();
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user