clientside-view-input-text

2.1.1 • Public • Published

Clientside-View-Input-Text

clientside_view_input_text-demo

Install

npm install clientside-view-input-text --save

Use

// building and appending the view
var view_loader = await load('clientside-view-loader'); // load the view loader
var text_input = await view_loader.load('clientside-view-text-input').build({label:"Full Name"});
document.body.appendChild(text_input);
 
// functionality usage
var value = text_button.value; // use the getter

Options

{
    label : STRING, // the label for the input
    title : STRING, // a description which displays on hover
    prefix : STRING, // a prefix before the input. e.g., "$"
    name : STRING, // dom name for the input element
    disabled : BOOLEAN, // disable the input
    password : BOOLEAN, // set as a password input, user input rendered as ****
    required : BOOLEAN, // make this a required field; shows red if empty
    type : STRING, // choose from ["number", "price", "percentage", "date", "time"]; input will enforce that only characters possible for that are accepted and validate that it is valid
}

Package Sidebar

Install

npm i clientside-view-input-text

Weekly Downloads

0

Version

2.1.1

License

ISC

Unpacked Size

26.1 kB

Total Files

17

Last publish

Collaborators

  • uladkasach