datatable-formatting.mustache revision ef820a2b98579b004dc187276f739fd5774a791f
1N/A<style scoped>
1N/A/* custom styles for this example */
1N/A.dt-example {margin:1em;}
1N/A
1N/A/* css to counter global site css */
1N/A.dt-example th {text-transform:none;}
1N/A.dt-example table {width:auto;}
1N/A.dt-example caption {display:table-caption;}
1N/A</style>
1N/A
1N/A<div class="intro">
1N/A <p>Custom format row data for display with string templates or custom functions.</p>
1N/A</div>
1N/A
1N/A<div class="example yui3-skin-sam">
1N/A {{>datatable-formatting-source}}
1N/A</div>
1N/A
1N/A<h2>Formatting Row Data for Display</h2>
1N/A
1N/A<p>Data can be stored in one format but be displayed in a different format. For instance, prices can be stored as numbers but be displayed as "$2.99", and birthdays can be stored as date objects but be displayed as "12/9/2009".
1N/A
1N/A<p>Simple formatting can be defined with a string template on the column definition.</p>
1N/A
1N/A```
1N/AYUI().use("datatable-base", function(Y) {
1N/A var cols = ["id","name", {key:"price", formatter:"\${value}"}],
1N/A data = [
1N/A {id:"ga-3475", name:"gadget", price:6.99},
1N/A {id:"sp-9980", name:"sprocket", price:3.75},
1N/A {id:"wi-0650", name:"widget", price:4.25}
1N/A ],
1N/A table = new Y.DataTable.Base({
1N/A columnset: cols,
1N/A recordset: data,
1N/A caption: "Data formatting with string template"
1N/A }).render("#template");
1N/A```
1N/A
1N/A<p>When a calculation is needed, define a custom function that generates markup for the data cell. The custom formatter function receives an object with the following properties: `{tbody, tr, td, classnames, headers, rowindex, record, column, data, value}`.</p>
1N/A
1N/A```
1N/A// The custom formatter function recieves an object with the properties:
1N/A// {tbody, tr, td, classnames, headers, rowindex, record, column, data, value}
1N/Avar calculate = function (o){
1N/A var record = o.record;
1N/A return "$"+(record.getValue("price") - record.getValue("cost"));
1N/A},
1N/Acols = [
1N/A "id",
1N/A "name",
1N/A { key: "profit", formatter: calculate }
1N/A],
1N/Adata = [
1N/A {id:"ga-3475", name:"gadget", price:6.99, cost:4.99},
1N/A {id:"sp-9980", name:"sprocket", price:3.75, cost:2.75},
1N/A {id:"wi-0650", name:"widget", price:4.25, cost:3.25}
1N/A],
1N/Adt = new Y.DataTable.Base({
columnset: cols,
recordset: data,
caption: "Data formatting with custom function"
}).render("#function");
```
<p>The DataType utility can be used to help format date objects. This example
also uses the `emptyCellValue` column configuration to supply a custom cell
value in the case of missing data.</p>
```
YUI().use("datatype-date", "datatable-base", function (Y) {
// The custom formatter function recieves an object with the properties:
// {tbody, tr, td, classnames, headers, rowindex, record, column, data, value}
var formatDates = function (o){
return o.value &&
Y.DataType.Date.format(o.value, { format: "%m/%d/%Y" });
},
cols = [
"id",
"name",
{ key: "date", formatter: formatDates, emptyCellValue: "(unknown)" }
],
data = [
{id:"ga-3475", name:"gadget", date:new Date(2006, 5, 1)},
{id:"sp-9980", name:"sprocket", date:new Date(2004, 8, 16)},
{id:"wi-0650", name:"widget"} // no date for this record
],
dt = new Y.DataTable.Base({
columnset: cols,
recordset: data,
caption: "Data formatting with DataType.Date"
}).render("#dates");
```