mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 05:23:21 +00:00
116 lines
4.2 KiB
HTML
116 lines
4.2 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>Row Selection</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/element/element-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>
|
|
|
|
|
|
<!--begin custom header content for this example-->
|
|
<style type="text/css">
|
|
/* custom styles for this example */
|
|
.yui-skin-sam .yui-dt-body { cursor:pointer; } /* when rows are selectable */
|
|
#single { margin-top:2em; }
|
|
</style>
|
|
|
|
<!--end custom header content for this example-->
|
|
|
|
</head>
|
|
|
|
<body class="yui-skin-sam">
|
|
|
|
|
|
<h1>Row Selection</h1>
|
|
|
|
<div class="exampleIntro">
|
|
<p>These examples demonstrate "standard" row selection mode and "single" row
|
|
selection mode.</p>
|
|
|
|
</div>
|
|
|
|
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
<div id="standard"></div>
|
|
<div id="single"></div>
|
|
|
|
<script type="text/javascript" src="assets/js/data.js"></script>
|
|
<script type="text/javascript">
|
|
YAHOO.util.Event.addListener(window, "load", function() {
|
|
YAHOO.example.RowSelection = function() {
|
|
var myColumnDefs = [
|
|
{key:"Date",formatter:YAHOO.widget.DataTable.formatDate, sortable:true},
|
|
{key:"To", sortable:true},
|
|
{key:"From", sortable:true},
|
|
{key:"Subject", sortable:true}
|
|
];
|
|
|
|
var myDataSource = new YAHOO.util.DataSource(YAHOO.example.Data.emails);
|
|
myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON;
|
|
myDataSource.responseSchema = {
|
|
resultsList: "messages",
|
|
fields: ["Date","To","From","Subject","XID","Date","Attachment"]
|
|
};
|
|
|
|
var standardSelectDataTable = new YAHOO.widget.DataTable("standard",
|
|
myColumnDefs, myDataSource, {
|
|
caption:"Standard Row Selection with Support for Modifier Keys"
|
|
});
|
|
|
|
// Subscribe to events for row selection
|
|
standardSelectDataTable.subscribe("rowMouseoverEvent", standardSelectDataTable.onEventHighlightRow);
|
|
standardSelectDataTable.subscribe("rowMouseoutEvent", standardSelectDataTable.onEventUnhighlightRow);
|
|
standardSelectDataTable.subscribe("rowClickEvent", standardSelectDataTable.onEventSelectRow);
|
|
|
|
// Programmatically select the first row
|
|
standardSelectDataTable.selectRow(standardSelectDataTable.getTrEl(0));
|
|
// Programmatically bring focus to the instance so arrow selection works immediately
|
|
standardSelectDataTable.focus();
|
|
|
|
var singleSelectDataTable = new YAHOO.widget.DataTable("single",
|
|
myColumnDefs, myDataSource, {
|
|
caption:"Single-Row Selection with Modifier Keys Disabled",
|
|
selectionMode:"single"
|
|
});
|
|
|
|
// Subscribe to events for row selection
|
|
singleSelectDataTable.subscribe("rowMouseoverEvent", singleSelectDataTable.onEventHighlightRow);
|
|
singleSelectDataTable.subscribe("rowMouseoutEvent", singleSelectDataTable.onEventUnhighlightRow);
|
|
singleSelectDataTable.subscribe("rowClickEvent", singleSelectDataTable.onEventSelectRow);
|
|
|
|
// Programmatically select the first row
|
|
singleSelectDataTable.selectRow(singleSelectDataTable.getTrEl(0));
|
|
|
|
return {
|
|
oDS: myDataSource,
|
|
oDTStandardSelect: standardSelectDataTable,
|
|
oDTSingleSelect: singleSelectDataTable
|
|
};
|
|
}();
|
|
});
|
|
</script>
|
|
|
|
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
|
|
|
|
</body>
|
|
</html>
|