This is a migrated thread and some comments may be shown as answers.

Filter on Grid Getting toLowerCase error

1 Answer 172 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Anis
Top achievements
Rank 1
Anis asked on 23 Dec 2011, 04:39 PM
Hi -
  I have my grid set up below when i try to filter a column i get to lowercase undefined error but without the row template the filtering works.  But i need to do row templating because i wanted some ajax buttons in my grid columns

   $(document).ready(function () {
        $("#grid").kendoGrid({
            dataSource: {
                dataType: "json",
                transport: {
                    read: "@HttpContext.Current.Request.Url/GetUsers"
                },
                schema: {
                    data: "Users",
                    total: "Count",
                    model:
                        {
                            fields:
                            {
                            UserLastName: {field: "UserLastName", type: "string" },
                            UserFirstName: { type: "string" },
                            UserInstitutionName: { type: "string" }
                            }
                       }
                    },
                serverPaging: false,
                serverSorting: false,
                serverFiltering: false,
                pageSize: 25
            },
            rowTemplate: kendo.template($("#rowTemplate").html()),
            sortable: true,
            pageable: true,
            filterable: true,
            scrollable: false
        });

1 Answer, 1 is accepted

Sort by
0
Anis
Top achievements
Rank 1
answered on 26 Dec 2011, 05:22 PM
Do i need to get an updated version or something
Tags
Grid
Asked by
Anis
Top achievements
Rank 1
Answers by
Anis
Top achievements
Rank 1
Share this question
or