c# - how customize filtering Client Template kendo grid column asp.net mvc 5 -


i have kendo grid contain column client template containing 3 type of icone, able filter column 3 icon didn't find solution question ? please me code:

columns.bound(p => p.x).clienttemplate(             " # if (x == -1) { #  <img src='***** />  # } #"              + " # if (x == 0) { #  <img src='***# } #"              + " # if (x == 1) { #  <img src='**** />   # } #"             ).filterable("???????").title("").width(20);         columns.bound(c => c.code)             .groupable(false); 

any please


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -