Input
The Input control allows the user to enter text in Single Line (input) og Multi Line (textarea) mode. It supports all the common HTML5 input types to make sure the keyboard on mobile devices adapt to the type of information requested such as phone numbers, e-mail addresses, dates, passwords, etc.


Basic example
var editor = new Fit.Controls.Input("Input1");
editor.Type(Fit.Controls.Input.Type.Text)
editor.Width(300);
editor.OnChange(function(sender)
{
    var pv = document.querySelector("#Preview");
    pv.innerHTML = editor.Value();
});
editor.Value("Hello world");
editor.Render(document.querySelector("#Control"));
Fit.UI is open source (LGPL) - download or fork it on GitHub - website powered by Sitemagic CMS