在Polymer 1.0和Vaadin-grid v1中,我使用了以下几行的单元格渲染器,根据数据值添加了一个图标:
grid.columns[6].renderer = function(cell) {
if (cell.data < 0){
cell.element.innerHTML = Math.abs(cell.data) + '<iron-icon icon="arrow-downward" style="color: red"/>';
}
else if (cell.data > 0) {
cell.element.innerHTML = cell.data + '<iron-icon icon="arrow-upward" style="color: green"/>';
}
else {cell.element.innerHTML = '<iron-icon icon="settings-ethernet" style="color: #ffcc00"/>';}
};
当然,迁移到vaadin-grid 2意味着没有更多的渲染器功能和建议使用模板。那么最有效的方法是什么?
任何帮助表示感谢 - 我随便学习这些东西,而且vaadin网站上的示例比我更专业!
答案 0 :(得分:1)
Tomi Virkki在Vaadin论坛上发表的文章很贴心地发布了一个使用计算机绑定的简单例子。现在看来已经很明显了,但我已经解释过了。谢谢Tomi
<vaadin-grid items="[[users.result]]">
<vaadin-grid-column width="50px" flex-grow="0">
<template class="header">#</template>
<template>
<iron-icon icon="[[_itemIcon(item)]]" style$="[[_itemIconStyles(item)]]"/>
</template>
</vaadin-grid-column>
<vaadin-grid-column>
<template class="header">First Name</template>
<template>[[item.firstName]]</template>
</vaadin-grid-column>
<vaadin-grid-column>
<template class="header">Last Name</template>
<template>[[item.lastName]]</template>
</vaadin-grid-column>
</vaadin-grid>
</template>
<script>
window.addEventListener('WebComponentsReady', () => {
class XGrid extends Polymer.Element {
static get is() {
return 'x-grid';
}
_itemIcon(item) {
return item.firstName > 'N' ? 'arrow-upward' : 'arrow-downward';
}
_itemIconStyles(item) {
return `color: ${item.firstName > 'N' ? 'green' : 'red'}`;
}
}
customElements.define('x-grid', XGrid);