I have a hierarchical grid using a template, but I'm unable to figure out the correct way to use a custom filter in the template.
I wrote about it on StackOverflow yesterday, but it won't hurt trying the forums either.
http://stackoverflow.com/questions/34638501/kendo-ui-template-refresh
I don't mind throwing the code around.
The structure of the data I use is this:
[
{
"date": "${Y.m}",
"new": "${new}",
"active": "${active}",
"inactive": "${inactive}",
"clients": [
{
"client_id": "${client_id}"
"administration_name": "${name_of_administration}",
"created_at": "${created_at}",
"updated_at": "${updated_at}",
"is_new": "${new}",
"status": "${status_id}"
}
]
}
}
]