我正在使用带有 PHP Wrapper 的剑道网格...格式化我的列时,我使用模板,但我无法将 #:ColmunValue# 传递给 getColorForValue 函数。
<script id="ColumnTemplate" type="text/x-kendo-tmpl">
<div style="background-color: <?php echo '\\'.$colors->getColorForValue(#:ColmunValue#); ? >;">
#:ColmunValue#
</div>
</script>
我尝试了第二种解决方案:
$Column = new \Kendo\UI\GridColumn();
$Column->field('ColumnName')
->title(' ')
->attributes(' bgcolor = '.getColorForValue(#: Column #) )
->templateId('ColumnTemplate')
->width(55);
但两者都不起作用:(有什么想法吗?