0

我正在使用带有 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);

但两者都不起作用:(有什么想法吗?

4

1 回答 1

1

rowTemplate 中不应有任何 PHP 代码(如果它取决于行的值)。您可以使用此处所示的客户端表达式和函数。

<script id="ColumnTemplate" type="text/x-kendo-tmpl">
    <div style="background-color: #= someFunction(data.PersonName) #">
             #= PersonName#
     </div>
</script>
<script>
      someFunction(name){
          // some logic here and then return color based on the name
          return "red";
      }
</script>
于 2013-08-07T10:00:07.870 回答