Questions tagged [kendo-clienttemplate]

4 questions
1
vote
0 answers

In Kendo grid how to pass currently bound column name to client template?

I have a Kendo Grid where every bound column is using a client template. I'm currently passing data to the client template, in addition to that how can I pass the currently bound column name to the client template? @(Html.Kendo().Grid() …
0
votes
1 answer

Concatenate 2 columns in KENDO grid using client template

I have my column bind on the grid as follows: columns.Bound(p => p.LastName) .ClientTemplate($"#=IsSpecialPerson ? 'Special Message' : ''##=LastName#") And now I have to add middle name with a space to the last name column if exists. I have…
Tiger
  • 417
  • 2
  • 8
  • 23
0
votes
1 answer

Show 2 child grids at the same level in a single parent grid in ASP.NET Kendo MVC

Can anyone please provide me the similar solution using kendo MVC as in the below link? Creating 2 child kendo grids at the same level Thanks!
0
votes
1 answer

Kendo MVC - Child Grid - Client Tempate - Loading - Exception / Undefined

I getting exception for Expand child grid, When i add client template ProductId / ProductName exception. columns.Bound(m => m.ProductId) .ClientTemplate("#= ProductName #"); Below code value is…
Thulasiram
  • 8,432
  • 8
  • 46
  • 54