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

Kendo support for Web Form application

1 Answer 1182 Views
General Information
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Nirav
Top achievements
Rank 1
Nirav asked on 15 Nov 2018, 03:29 PM

Respected Rep,

                           Can knows weather Kendo pack works for Web Form applications or not?? if we to integrate Kendo Grid and few controls on web form projects under ASPX pages, what is the best approach or quick start material?? please assist.

Thanks,

Nick 

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 20 Nov 2018, 09:25 AM
Hi Nick,

Kendo UI is a JavaScript library which makes it extremely portable on all types of platforms like Web Forms, MVC, Core, JSP, PHP and even standard HTML pages.

To install and run the Kendo UI widgets follow the instructions in this article: Getting Started with ProgressĀ® Kendo UIĀ®.

Here is an example of how to configure and run the Kendo DatePicker widget in a WebForms page:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default8.aspx.cs" Inherits="Default8" %>
 
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>
 
<head runat="server">
    <title></title>
 
    <script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
</head>
<body>
    <form id="form1" runat="server">
        <input id="datepicker" />
        <script>
            $(function () {
                $("#datepicker").kendoDatePicker();
            });
        </script>
 
    </form>
</body>
</html>


Regards,
Rumen
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
General Information
Asked by
Nirav
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or