dojox.widget.Pager¶
Status: | Draft |
---|---|
Version: | 1.0 |
Project owner: | Nikolai Onken |
Available: | since V? |
Contents
TODO: short summary of the component/class/method
Introduction¶
TODO: introduce the component/class/method
Usage¶
TODO: how to use the component/class/method
<script type="text/javascript">
// your code
</script>
Examples¶
Programmatic example¶
TODO: example
Declarative example: Horizontal Pager¶
<style type="text/css"> @import "/_static/dojo/dojox/widget/Pager/Pager.css"; </style>
<script type="text/javascript"> dojo.require("dojo.data.ItemFileReadStore"); dojo.require("dojox.widget.Pager"); </script>
<!-- the datastore --> <div dojoType="dojo.data.ItemFileReadStore" jsId="pagerStore" id="pagerStore" url="/_static/dojo/dojox/widget/tests/_pager-data.json"></div> <h2>Horizontal Pager</h2> <div style="padding:8px"> <div dojoType="dojox.widget.Pager" id="dojoxMenu1" store="pagerStore" style="width: 410px; height: 150px"></div> </div>