data tables are going to need some work yet, but the other stuff seems to be working 100%
92 lines
3 KiB
HTML
92 lines
3 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<title>Local XML Data</title>
|
|
|
|
<style type="text/css">
|
|
/*margin and padding on body element
|
|
can introduce errors in determining
|
|
element position and are not recommended;
|
|
we turn them off as a foundation for YUI
|
|
CSS treatments. */
|
|
body {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
</style>
|
|
|
|
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" />
|
|
<link rel="stylesheet" type="text/css" href="../../build/datatable/assets/skins/sam/datatable.css" />
|
|
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
|
|
<script type="text/javascript" src="../../build/connection/connection-min.js"></script>
|
|
<script type="text/javascript" src="../../build/element/element-beta-min.js"></script>
|
|
<script type="text/javascript" src="../../build/datasource/datasource-min.js"></script>
|
|
<script type="text/javascript" src="../../build/datatable/datatable-min.js"></script>
|
|
|
|
<!--there is no custom header content for this example-->
|
|
|
|
</head>
|
|
|
|
<body class=" yui-skin-sam">
|
|
|
|
|
|
<h1>Local XML Data</h1>
|
|
|
|
<div class="exampleIntro">
|
|
<p>This DataTable is populated with XML data from a webservice that is held in local memory in the
|
|
JavaScript variable xmlDoc.</p>
|
|
|
|
</div>
|
|
|
|
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
<div id="localxml"></div>
|
|
|
|
<script type="text/javascript">
|
|
YAHOO.util.Event.addListener(window, "load", function() {
|
|
YAHOO.example.Local_XML = function() {
|
|
var myDataSource, myDataTable;
|
|
|
|
var connectionCallback = {
|
|
success: function(o) {
|
|
var xmlDoc = o.responseXML;
|
|
|
|
var myColumnDefs = [
|
|
{key:"Title", label:"Name", sortable:true, formatter:"link"},
|
|
{key:"Phone"},
|
|
{key:"City"},
|
|
{key:"AverageRating", label:"Rating",formatter:YAHOO.widget.DataTable.formatNumber, sortable:true}
|
|
];
|
|
|
|
myDataSource = new YAHOO.util.DataSource(xmlDoc);
|
|
myDataSource.responseType = YAHOO.util.DataSource.TYPE_XML;
|
|
myDataSource.responseSchema = {
|
|
resultNode: "Result",
|
|
fields: ["Title","Phone","City",{key:"AverageRating",parser:"number"},"ClickUrl"]
|
|
};
|
|
|
|
myDataTable = new YAHOO.widget.DataTable("localxml", myColumnDefs, myDataSource);
|
|
|
|
},
|
|
failure: function(o) {
|
|
|
|
}
|
|
};
|
|
|
|
var getXML = YAHOO.util.Connect.asyncRequest("GET",
|
|
"assets/php/ylocal_proxy.php?query=pizza&zip=94089&results=10",
|
|
connectionCallback);
|
|
|
|
return {
|
|
oDS: myDataSource,
|
|
oDT: myDataTable
|
|
};
|
|
}();
|
|
});
|
|
</script>
|
|
|
|
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
</body>
|
|
</html>
|