webgui/www/extras/yui/examples/datatable/complex.html
2007-07-05 04:23:55 +00:00

249 lines
9.6 KiB
HTML

<!doctype html public "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Example: DataTable - Integrated Feature Set (YUI Library)</title>
<link type="text/css" rel="stylesheet" href="../../build/reset/reset.css">
<link type="text/css" rel="stylesheet" href="../../build/fonts/fonts.css">
<link type="text/css" rel="stylesheet" href="../../build/logger/assets/logger.css">
<link type="text/css" rel="stylesheet" href="../../build/datatable/assets/datatable.css">
<link type="text/css" rel="stylesheet" href="./css/examples.css">
<link type="text/css" rel="stylesheet" href="../assets/dpSyntaxHighlighter.css">
<style type="text/css">
/* custom css*/
#complex {margin:1em;}
#complex table {border-collapse:collapse;}
#complex th, #paginated td {border:1px solid #000;width:10em;}
#complex th {background-color:#696969;}/* gray*/
#complex th .yui-dt-headtext {margin-right:5px;padding-right:15px;color:#fff;} /*room for arrow*/
#complex th a {color:#fff;} /* white */
#complex .yui-dt-sortedbyasc, #complex .yui-dt-sortedbydesc {background-color:#3F3F3F;}/*dark gray*/
#complex .yui-dt-sortedbyasc .yui-dt-headtext {background-image: url('img/arrow_up.gif'); background-repeat:no-repeat; background-position:right;}/*arrow up*/
#complex .yui-dt-sortedbydesc .yui-dt-headtext {background-image: url('img/arrow_dn.gif'); background-repeat:no-repeat; background-position:right;}/*arrow down*/
#complex .yui-dt-odd {background-color:#eee;} /*light gray*/
#complex .yui-dt-selected {background-color:#97C0A5;} /*green*/
.areacodestyle {text-align:center;}
.statestyle, .notesstyle {padding-left:1em;}
</style>
</head>
<body>
<div id="hd">
<h1><img src="./img/logo.gif" class="logo" alt="Y!"/><a href="./">DataTable Widget</a> :: Integrated Feature Set</h1>
</div>
<div id="bd">
<div id="complex"></div>
<!-- Sample code begins -->
<div id="code">
<h3>Sample Code</h3>
<p>Data:</p>
<textarea name="code" class="JScript" cols="60" rows="1">
YAHOO.example.Data.areacodes = [
{areacode: "201", state: "New Jersey"},
...,
{areacode: "989", state: "Michigan"}
];
</textarea>
<p>CSS:</p>
<textarea name="code" class="HTML" cols="60" rows="1">
/* custom css*/
#complex {margin:1em;}
#complex table {border-collapse:collapse;}
#complex th, #paginated td {border:1px solid #000;width:10em;}
#complex th {background-color:#696969;}/* gray*/
#complex th .yui-dt-headtext {margin-right:5px;padding-right:15px;} /*room for arrow*/
#complex th a {color:#fff;} /* white */
#complex .yui-dt-sortedbyasc, #complex .yui-dt-sortedbydesc {background-color:#3F3F3F;}/*dark gray*/
#complex .yui-dt-sortedbyasc .yui-dt-headtext {background-image: url('img/arrow_up.gif'); background-repeat:no-repeat; background-position:right;}/*arrow up*/
#complex .yui-dt-sortedbydesc .yui-dt-headtext {background-image: url('img/arrow_dn.gif'); background-repeat:no-repeat; background-position:right;}/*arrow down*/
#complex .yui-dt-odd {background-color:#eee;} /*light gray*/
#complex .yui-dt-selected {background-color:#97C0A5;} /*green*/
.areacodestyle {text-align:center;}
.statestyle, .notesstyle {padding-left:1em;}
</textarea>
<p>Markup:</p>
<textarea name="code" class="HTML" cols="60" rows="1">
<div id="complex"></div>
</textarea>
<p>JavaScript:</p>
<textarea name="code" class="JScript" cols="60" rows="1">
// Custom sort functionality to sort by areacode within states
YAHOO.example.sortStatesAsc = function(a, b) {
if((a === null) || (typeof a == "undefined")) {
if((b === null) || (typeof b == "undefined")) {
return 0;
}
else {
return 1;
}
}
else if((b === null) || (typeof b == "undefined")) {
return -1;
}
var comp = YAHOO.util.Sort.compareAsc;
var compState = comp(a.state, b.state);
return (compState !== 0) ? compState : comp(a.areacode, b.areacode);
};
YAHOO.example.sortStatesDesc = function(a, b) {
if((a === null) || (typeof a == "undefined")) {
if((b === null) || (typeof b == "undefined")) {
return 0;
}
else {
return -1;
}
}
else if((b === null) || (typeof b == "undefined")) {
return 1;
}
var comp = YAHOO.util.Sort.compareDesc;
var compState = comp(a.state, b.state);
return (compState !== 0) ? compState : comp(a.areacode, b.areacode);
};
var myColumnHeaders = [
{key:"areacode",text:"Area Codes",width:"8em",className:"areacodestyle",sortable:true},
{key:"state",text:"States",width:"16em",className:"statestyle",sortable:true,sortOptions:{ascFunction:YAHOO.example.sortStatesAsc,descFunction:YAHOO.example.sortStatesDesc}},
{key:"notes",text:"Notes (editable)",editor:"textbox"}
];
var myColumnSet = new YAHOO.widget.ColumnSet(myColumnHeaders);
var myDataSource = new YAHOO.util.DataSource(YAHOO.example.Data.areacodes);
myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSARRAY;
myDataSource.responseSchema = {
fields: ["areacode","state"]
};
var myConfigs = {
caption:"Example: Integrated Feature Set",
sortedBy:{colKey:"areacode",dir:"asc"},
paginator:true,
paginatorOptions: {
rowsPerPage: 25,
dropdownOptions: [10,25,50,100],
pageLinks: 5
}
}
var myDataTable = new YAHOO.widget.DataTable("complex",myColumnSet,myDataSource,myConfigs);
myDataTable.subscribe("cellClickEvent",myDataTable.onEventSelectRow);
myDataTable.subscribe("cellClickEvent",myDataTable.onEventEditCell);
var onCellEdit = function(oArgs) {
var oldData = oArgs.oldData || "";
var newData = oArgs.newData || "";
YAHOO.log("Cell \"" + oArgs.target.id +
"\" was updated from \"" + oldData + "\" to \"" +
newData + "\"", "info", this.toString());
}
myDataTable.subscribe("cellEditEvent",onCellEdit);
</textarea>
</div>
<!-- Code sample ends -->
</div>
<script type="text/javascript" src="../../build/yahoo/yahoo.js"></script>
<script type="text/javascript" src="../../build/dom/dom.js"></script>
<script type="text/javascript" src="../../build/event/event.js"></script>
<script type="text/javascript" src="../../build/logger/logger.js"></script>
<script type="text/javascript" src="../../build/datasource/datasource-beta-debug.js"></script>
<script type="text/javascript" src="../../build/datatable/datatable-beta-debug.js"></script>
<script type="text/javascript" src="./js/data.js"></script>
<script type="text/javascript">
var myLogger = new YAHOO.widget.LogReader();
/****************************************************************************/
/****************************************************************************/
/****************************************************************************/
// Custom sort functionality to sort by areacode within states
YAHOO.example.sortStatesAsc = function(a, b) {
if((a === null) || (typeof a == "undefined")) {
if((b === null) || (typeof b == "undefined")) {
return 0;
}
else {
return 1;
}
}
else if((b === null) || (typeof b == "undefined")) {
return -1;
}
var comp = YAHOO.util.Sort.compareAsc;
var compState = comp(a.state, b.state);
return (compState !== 0) ? compState : comp(a.areacode, b.areacode);
};
YAHOO.example.sortStatesDesc = function(a, b) {
if((a === null) || (typeof a == "undefined")) {
if((b === null) || (typeof b == "undefined")) {
return 0;
}
else {
return -1;
}
}
else if((b === null) || (typeof b == "undefined")) {
return 1;
}
var comp = YAHOO.util.Sort.compareDesc;
var compState = comp(a.state, b.state);
return (compState !== 0) ? compState : comp(a.areacode, b.areacode);
};
var myColumnHeaders = [
{key:"areacode",text:"Area Codes",width:"8em",className:"areacodestyle",sortable:true},
{key:"state",text:"States",width:"16em",className:"statestyle",sortable:true,sortOptions:{ascFunction:YAHOO.example.sortStatesAsc,descFunction:YAHOO.example.sortStatesDesc}},
{key:"notes",text:"Notes (editable)",className:"notesstyle",editor:"textbox"}
];
var myColumnSet = new YAHOO.widget.ColumnSet(myColumnHeaders);
var myDataSource = new YAHOO.util.DataSource(YAHOO.example.Data.areacodes);
myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSARRAY;
myDataSource.responseSchema = {
fields: ["areacode","state"]
};
var myConfigs = {
caption:"Example: Integrated Feature Set",
sortedBy:{colKey:"areacode",dir:"asc"},
paginator:true,
paginatorOptions: {
rowsPerPage: 25,
dropdownOptions: [10,25,50,100],
pageLinks: 5
}
}
var myDataTable = new YAHOO.widget.DataTable("complex",myColumnSet,myDataSource,myConfigs);
myDataTable.subscribe("cellClickEvent",myDataTable.onEventSelectRow);
myDataTable.subscribe("cellClickEvent",myDataTable.onEventEditCell);
var onCellEdit = function(oArgs) {
var oldData = oArgs.oldData || "";
var newData = oArgs.newData || "";
YAHOO.log("Cell \"" + oArgs.target.id +
"\" was updated from \"" + oldData + "\" to \"" +
newData + "\"", "info", this.toString());
}
myDataTable.subscribe("cellEditEvent",onCellEdit);
</script>
<script type="text/javascript" src="../assets/dpSyntaxHighlighter.js"></script>
<script type="text/javascript">
dp.SyntaxHighlighter.HighlightAll('code');
</script>
</body>
</html>