Featured Post
Ext JS Column Renderer 2
- Get link
- X
- Other Apps
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="ext3/css/ext-all.css" />
<style type="text/css">
.trend-down
{
background:url(img/trend-down.png) right no-repeat
!important;
}
.trend-neutral
{
background:url(img/trend-neutral.png) right no-repeat
!important;
}
.trend-up
{
background:url(img/trend-up.png) right no-repeat
!important;
}
.padding-img
{
width:18px;height:0px;
}
</style>
<script type="text/javascript" src="ext3/ext-base.js"></script>
<script type="text/javascript" src="ext3/ext-all-debug.js"></script>
<script type="text/javascript">
Ext.BLANK_IMAGE_URL = 'ext3/images/default/s.gif';
var store = new Ext.data.ArrayStore({
fields: ['title', 'rentals', 'trend'],
data: [['ACADEMY DINOSAUR', 305, 'up'],
['DRAGONFLY STRANGERS', 240, 'neutral'],
['FAMILY SWEET', 188, 'down'],
['FREAKY POCUS', 205, 'up'],
['GABLES METROPOLIS', 265, 'up']]
});
Ext.onReady(function() {
var grid = new Ext.grid.GridPanel({
title: 'Movie rentals this month',
store: store,
columns: [
{ id: 'title-col', header: "Title", width: 275, dataIndex:
'title', sortable: true },
{ header: "Rentals", width: 75, dataIndex: 'rentals',
sortable: true, align: 'right',
renderer: function(value, metaData, record, rowIndex,
colIndex, store) {
switch (record.data.trend) {
case 'down':
metaData.css = 'trend-down';
break;
case 'neutral':
metaData.css = 'trend-neutral';
break;
case 'up':
metaData.css = 'trend-up';
break;
}
return value + String.format('<img
class="padding-img" src="{0}"/>',Ext.BLANK_IMAGE_URL);
}
}
],
autoExpandColumn: 'title-col',
renderTo: Ext.getBody(),
width: 350,
height: 175,
loadMask: true
});
});
</script>
</head>
<body style="padding: 20px">
</body>
</html>
This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. If by an addressing or transmission error this mail has been misdirected to you, you are requested to delete this mail immediately. You are also hereby notified that any use, any form of reproduction, dissemination, copying, disclosure, modification, distribution and/or publication of this e-mail message, contents or its attachment other than by its intended recipient/s is strictly prohibited.
Visit us at http://www.polaris.co.in
Comments