Kendo UI DropDowns for React
Перейти к файлу
Desislava Mihaylova d58a32eae9 docs: Add slugs 2016-04-14 16:15:19 +03:00
docs docs: Add slugs 2016-04-14 16:15:19 +03:00
e2e feat(autocomplete): provide support for binding to array of primitives 2016-03-22 18:42:42 +02:00
examples chore(combobox): Update Redux example 2016-04-12 14:16:24 +03:00
src feat(listcontainer): Use a Popup component 2016-04-14 10:45:01 +03:00
test feat(dropdownlist): widget accepts class name and style props 2016-04-13 14:47:28 +03:00
.eslintrc.json chore(lint): use eslint-config repo 2016-01-25 17:58:44 +02:00
.gitignore feat(combobox): Add basic Redux demo application 2016-04-11 15:12:39 +03:00
LICENSE.md docs: Add LICENSE and update README to initial draft version 2016-03-31 11:57:27 +03:00
README.md docs: Remove extra content 2016-04-14 15:12:43 +03:00
gulpfile.js feat(list): Initial list implementation 2016-02-11 18:55:21 +02:00
package.json chore: add dependency for kendo-react-button and kendo-react-popup 2016-04-13 17:23:11 +03:00

README.md

Commitizen friendly

Kendo UI DropDowns for React

Overview

This repository contains the source code and documentation of the Kendo UI DropDowns components for React.

Currently, the package includes the following components:

  • AutoComplete
  • ComboBox
  • DropDownList

Telerik works on porting the MultiSelect component for React too.

For more information on upcoming DropDowns package features and components, refer to the Roadmap.

Basic Usage

Kendo UI AutoComplete Component

The AutoComplete provides suggestions to the user from a previously entered list of options depending on the typed input.



For more examples and available configuration options, refer to the AutoComplete documentation section.

Kendo UI ComboBox Component

The ComboBox displays a list of pre-defined options. It allows the user to pick a single value from that list, or to enter a custom value through keyboard input.



For more examples and available configuration options, refer to the ComboBox documentation section.

Kendo UI DropDownList Component

The DropDownList displays a list of pre-defined options and allows the user to pick a single value from that list.



For more examples and available configuration options, refer to the DropDownList documentation section.

Installation

The React DropDowns are published as a public scoped NPM package in the Telerik organization in http://npmjs.org/.

Install it using NPM:

npm install --save @telerik/kendo-react-inputs;

Once installed, import the module:

// ES2015 module syntax
import {Slider} from 'kendo-react-inputs';
// CommonJS format
var Slider = require('kendo-react-inputs').Slider;

Browser Support

The Kendo UI DropDowns components for React support all browsers that are supported by the React framework—Internet Explorer 9 and later versions.

Glossary

Below are explained the basic terms that Kendo UI suite for React applies.

Component

A Component refers to a React Component.

Package

A package contains one or more components, developed in a single repository and distributed in a single NPM package. For example, the Kendo UI AutoComplete, ComboBox, and DropDownList components for React are part of the DropDowns Package.