문제

I am trying to aggregate a kendo grid and want to set the field value in groupHeaderTemplate to something like this:

columns: [
          { field: "tupleregex", title: "Tuple Regex",
          groupHeaderTemplate: "#=tupleregex# :(Count: #=count#)" }
         ]

But this returns the error tupleregex is not defined.

도움이 되었습니까?

해결책

Very simple you forgot

#=value#

just replace with

columns: [
          { field: "tupleregex", title: "Tuple Regex",
          groupHeaderTemplate: "#= value # :(Count: #=count#)" }
         ]
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top