Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

kendo-labs/kendo-ui-forms

Repository files navigation

kendo-ui-forms

Note

Kendo UI Labs projects are experimental and largely built and supported by the community. As such Telerik does not provide official support for any of the Kendo UI Labs projects via Telerik support agreements. We do encourage you to open an issue or visit Stack Overflow.

A Full-Featured HTML5 Forms Polyfill that leverages Kendo UI Widgets and Framework Validation

Build Status

Demo

Click here to view a demo of this library in action

Purpose & Goals

The purpose of this project is to serve as a complete polyfill for HTML5 Forms functionality, including support for new input types—​like color and datetime—​new attributes—​like placeholder and pattern—​and validation. This project includes built-in feature detection and, by-default, will only polyfill those forms features not present in the user’s browser. To polyfill forms features, Kendo UI widgets and framework features will be used.

If developers prefer not to use the default behavior, they will be able to configure the polyfill to always use Kendo UI widgets and features, even in cases where the browser natively supports these.

This library will function as an opt-in polyfill, meaning that the developer will need to initialize a form using Kendo UI’s imperative, plugin syntax (eg. $('form').kendoForm();) or with declarative syntax on an HTML form element (eg. <form data-role="form">).

Goals

  • Provide a complete HTML5 Forms solution that leverages Kendo UI for visual widgets and features like validation.

  • Enable developers to mark up forms using HTML5 Forms semantics and automatically gain support for these in non-supporting browsers. Anecdotally, in a future world where all browser fully support the forms spec, a developer should be able to remove the script reference for this library and the single attribute or line of code that initializes it and have a non-broken, fully-functional experience.

  • Ensure that performance is a feature. This library should tax the developer and end user as little as possible, making the benefit of use far higher than the cost of development, maintenance or performance.

Non-Goals

  • This library will not support configurable or drop-in replacement for another UI/Widget library.

  • This library will not diverge from the HTML5 Forms spec in order to add convenience features or non-standard behaviors.

Features

  1. Ability to initialize a kendoForm custom widget from a Form in the DOM

  2. Ability to interrogate types on a form and upgrade visual elements (Date, Color, etc.)

  3. Ability to give all inputs a kendo look and feel (k-input)

  4. Ability to upgrade visual form types only when not present in the current browser.

  5. Ability to add Kendo UI Validation to a form

  6. Ability to support forms attributes (placeholder, to be specific)

  7. Ability to swap-in the Kendo UI File Upload control

Roadmap

  • v0.1 - Support upgrading all HTML5 input types (color, numeric, range, file, datatime, time, month, week)

  • v0.1.1 - button support & date type support

  • v0.1.9 (Current) - placeholder fallback; progress support; button support

  • v0.2 - Add support for meter and datalist elements; add search box UI; autocomplete attribute support.

  • v0.3 - Add validation support

A complete list of features can be found in Table 1, below. For details about forms support across browsers, see the following document.

Table 1. Current Status of Polyfill Features
Feature Supported Version

Color

Yes

0.1

Number

Yes

0.1

Range

Yes

0.1

File

Yes

0.1

DateTime

Yes

0.1

DateTime-Local

Yes

0.1

Time

Yes

0.1

Month

Yes

0.1

Week

Yes

0.1

Date

Yes

0.1.1

Inputs & Buttons

Yes

0.1.1

Progress

Yes

0.1.9

Meter

No

0.2

Datalist

No

0.2

Placeholder

Yes

0.1.5

Search

No

0.2

Autocomplete

No

0.2

Validation

No

0.3

Compatibility and Requirements

kendo-ui-forms was designed to work with Kendo UI Web. The project currently depends on the following libraries:

kendo-ui-forms has not been tested against any other versions of these libraries. You may find that versions other than these are compatible with kendo-ui-forms, but we make no claims to support those version, nor can we troubleshoot issues that arise when using those versions.

Source Code

This repository contains both the full and minified builds of the library in the dist folder

Documentation

Check out the Getting Started guide in the Wiki.

A working sample of the plugin can be found in the samples directory

How to Contribute

If you would like to contribute to kendo-ui-forms’s source code, please read the guidelines for pull requests and contributions. Following these guidelines will help make your contributions easier to bring in to the next release.

Downloading and Installing

Once you clone the repo, run

npm install

to grab all of the essential dependencies for dev, build and test. The repo uses grunt for all of these, so run

grunt

to make sure everything is working. If you see text indicating that the jshint, concat and uglify tasks have run without errors, you’re golden!

Running the Tests

Tests are written in jasmine and can be found in the spec/ directory. To run the tests from the command-line, call

grunt test

The Kendo UI Forms Project also uses Karma to ensure cross-browser coverage of all tests. Browsers tested include:

  • Google Chrome

  • Google Chrome Canary

  • Firefox

  • Opera

  • Safari [OSX Only]

  • IE [Windows Only]

If you don’t have any of these browsers, Karma will fail. But hey, this is cross-browser polyfill development here, so just install them all!

To run Karma, you can call

grunt x-test

and Karma will take care of launching each browser, running the specs and shutting them down again (except for Safari, for some reason, so that’s awesome).

If you want to run the jasmine tests in your browser, as opposed to running the multi-browser tests or from the console every time, you can spin up a local webserver and navigate to spec/runner.html, or navigate directly via the filesystem

file://localhost/Users/brandon/Dropbox/Development/kendo-ui-forms/spec/runner.html
Running Karma in Chrome

If you’re using Chrome and taking the latter approach, some of the tests will fail because of cross-domain features in Chrome. To work around this, run Chrome with the --allow-file-access-from-files terminal command.

For OSX:

open -a /Applications/Google\ Chrome.app --args --allow-file-access-from-files

And Windows:

C:\Users\[UserName]\AppData\Local\Google\Chrome[ SxS]\Application\chrome.exe --allow-file-access-from-files

Getting Help

As a part of Kendo UI Labs, kendo-ui-forms is intended to be a community-run project, and not an official part of any Kendo UI SKU (Web, DataViz, Mobile or Complete). As such, this project is not a supported part of Kendo UI, and is not covered under the support agreements for Kendo UI license holders. Please do not create support requests for this project, as these will be immediately closed and you’ll be directed to post your question on a community forum.

Release Notes

For change logs and release notes, see the changelog file.

License Information

This project has been released under the Apache License, version 2.0, the text of which is included below. This license applies ONLY to the project-specific source of each repository and does not extend to Kendo UI itself, or any other 3rd party libraries used in a repository. For licensing information about Kendo UI, see the License Agreements page at KendoUI.com.

Copyright © 2013 Telerik

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.

You may obtain a copy of the License at

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Full-Featured HTML5 Forms Polyfill that Leverages Kendo UI Widgets and Framework Validation

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •