Is it possible to filter a templated column that uses a function to iterate over a sub-class?
I have a grid that has the following column:
The Template function/script that is used to display the data:
The above functions display a list of links within one grid cell, because each meeting can have multiple Agendas. Now I would like to be able to filter on the Agenda Name. "this.Name" variable above.
Is this possible?
Thanks.
I have a grid that has the following column:
{ field: 'agenda', template: kendo.template($("#agendas-template").html()), title: "Agendas", filterable: true, sortable: false, groupable: false}The Template function/script that is used to display the data:
<script id="agendas-template" type="text/x-kendo-tmpl"> # $.each(agenda, function(data) { if (typeof this.Name !== "undefined") {# <span><a href="/#: this.URLBase #/agenda/#: this.Id #">#: this.Name #</a></span> # } }); #</script>The above functions display a list of links within one grid cell, because each meeting can have multiple Agendas. Now I would like to be able to filter on the Agenda Name. "this.Name" variable above.
Is this possible?
Thanks.