Prakash Hinduja Geneva (Switzerland) How do I set up Kendo UI components in my project?

1 Answer 8 Views
General Discussions
Prakash
Top achievements
Rank 1
Prakash asked on 24 Sep 2025, 07:37 AM
Hello, I’m Prakash Hinduja, born in India and now living in Geneva, Switzerland (Swiss). I’m new to Kendo UI and want to set up its components in my project. Any tips, please suggest me. 


1 Answer, 1 is accepted

Sort by
0
Martin
Telerik team
answered on 26 Sep 2025, 04:14 PM | edited on 26 Sep 2025, 04:17 PM

Hello, Prakash,

To help you set up Kendo UI for jQuery components in your project, here are all the main approaches you can use:

Approaches to Add Kendo UI for jQuery

1. Using CDN (Content Delivery Network)

  • The quickest way to get started is by including the Kendo UI CSS and JS files directly from the CDN in your HTML:

<link rel="stylesheet" href="https://kendo.cdn.telerik.com/themes/12.0.0/default/default-ocean-blue.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>  
<script src="https://kendo.cdn.telerik.com/2025.3.825/js/kendo.all.min.js"></script>

    2. Local Installation

    • Download the Kendo UI for jQuery package from your Telerik account.
    • Add the CSS and JS files to your project and reference them locally:
      <link rel="stylesheet" href="path/to/kendo.default-v2.min.css" />
      <script src="path/to/jquery.min.js"></script>
      <script src="path/to/kendo.all.min.js"></script>
      

    3. Using npm Package Manager

    • For projects using build tools (like Webpack), install Kendo UI for jQuery via npm (requires a commercial license):
      npm install --save @progress/kendo-ui
      
      Then import the needed scripts:
      import $ from 'jquery';
      import
      '@progress/kendo-ui';

        You can also check our documentation to get started with our components.

        Let me know if you have any questions.

        Regards,
        Martin
        Progress Telerik

        Your perspective matters! Join other professionals in the State of Designer-Developer Collaboration 2025: Workflows, Trends and AI survey to share how AI and new workflows are impacting collaboration, and be among the first to see the key findings.
        Start the 2025 Survey
        Tags
        General Discussions
        Asked by
        Prakash
        Top achievements
        Rank 1
        Answers by
        Martin
        Telerik team
        Share this question
        or