Hi mahesh213,
Refer below code.
Controller
public class HomeController : Controller
{
    // GET: Home
    public ActionResult Index()
    {
        return View();
    }
    public JsonResult GetCustomers(string date)
    {
        List<Customer> customers = new List<Customer>();
        customers.Add(new Customer { Id = 1, Name = "John Hammond", Date = DateTime.Today });
        customers.Add(new Customer { Id = 2, Name = "Mudassar Khan", Date = DateTime.Today.AddDays(-5) });
        customers.Add(new Customer { Id = 3, Name = "Suzanne Mathews", Date = DateTime.Today.AddDays(-6) });
        customers.Add(new Customer { Id = 4, Name = "Robert Schidner", Date = DateTime.Today.AddDays(-3) });
        DateTime dt;
        if (date != null)
        {
            dt = DateTime.ParseExact(date, "MM/dd/yyyy", CultureInfo.CurrentCulture);
        }
        else
        {
            dt = DateTime.ParseExact(DateTime.Today.ToString("MM/dd/yyyy"), "MM/dd/yyyy", CultureInfo.CurrentCulture);
        }
        customers = customers.Where(x => x.Date == dt).ToList();
        return Json(customers, JsonRequestBehavior.AllowGet);
    }
    public class Customer
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public DateTime Date { get; set; }
    }
    public JsonResult UpdateCustomers(Customer customer)
    {
        return null;
    }
}
View
@{
    Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Index</title>
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2020.1.114/styles/kendo.default-v2.min.css" />
    <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script type="text/javascript" src="https://kendo.cdn.telerik.com/2020.1.114/js/angular.min.js"></script>
    <script type="text/javascript" src="https://kendo.cdn.telerik.com/2020.1.114/js/kendo.all.min.js"></script>
    <script type="text/javascript">
        var app = angular.module("MyApp", ["kendo.directives"]);
        app.controller("MyController", function ($scope) {
            $scope.mainGridOptions = {
                dataSource: {
                    type: "json",
                    transport: {
                        read: { url: "/home/GetCustomers" },
                        update: { url: "/home/UpdateCustomers" }
                    },
                    schema: {
                        model: {
                            id: "Id",
                            fields: {
                                Id: { editable: false, nullable: true, type: "number" },
                                Name: { editable: true, nullable: true, type: "string" },
                                Date: { editable: true, nullable: true, type: "date" }
                            }
                        }
                    },
                    pageSize: 4,
                    serverPaging: false,
                    serverSorting: false
                },
                editable: "inline",
                sortable: true,
                pageable: true,
                resizeable: true,
                columns: [
                    { field: "Id", title: "Id", width: "50px" },
                    { field: "Name", title: "Name" },
                    {
                        field: "Date",
                        title: "Date Time",
                        width: "120px",
                        format: "{0:MM/dd/yyyy}",
                        editor: function (container, options) {
                            $('<input data-text-field="' + options.field + '" data-value-field="' + options.field + '" data-bind="value:' + options.field + '" data-format="' + options.format + '"/>')
                                .appendTo(container)
                                .kendoDatePicker();
                        }
                    },
                    {
                        title: 'Action',
                        command: [{ name: "edit", text: "Edit", iconClass: "k-icon k-i-hyperlink-open" }]
                    }
                ]
            };
            $scope.Search = function () {
                // Your rest code.
            }
        })
        $(function () {
            $('#txtFromDate').kendoDatePicker({
                value: new Date()
            });
        });
    </script>
</head>
<body ng-app="MyApp" ng-controller="MyController">
    <input id="txtFromDate" ng-model="FromDate" />
    <input type="button" value="Search" ng-click="Search()" />
    <hr />
    <kendo-grid k-options="mainGridOptions"></kendo-grid>
</body>
</html>
Screenshot
