Giter Site home page Giter Site logo

angular-field-splitter's Introduction

Field Splitter directive

For an online example, check out: http://rawgit.com/deleteman/angular-field-splitter/master/examples.html

Turn a single input field, into a multi-field input. This new field has the following features:

  • Default value: Allowing for inline labels
  • Auto blur/focus: When the users enters maxlength characters into one of the fields, the focus is automatically changed into the next field.
  • Glue string: Used when joining the values of partial fields
  • Gracefull degradation: If no JS is enabled, then the original input field is used.

How do I get the value from all those new fields?

You don't! The directive updates the original field while keeping it hidden, that way you can include the directive into an already created form without having to change the way you send the information.

How to use it?

##Installing

Using npm:

$ npm install angular-field-splitter

Manual installation:

Include angular-field-splitter.js into your project, simple!

##Using it

The main directive provided is: split-field, just by adding it to an input field, it'll work.

Attributes

There are several attributes that can be passed, allowing for some customization:

  • split-default-value: The text used on the input when there is no text entered by the user (default: XXX)
  • split-max-length: The max length allowed for that input (default: 3)
  • split-into: Number of fields to split the original one into. (default: 3)
  • split-glue: String to be used to join the fields and their value (default: "-")
  • split-glue-original: When updating the original input field, do we use the glue string or not? (default: true)

Examples of use

Here are some basic code examples:

Using some of the configuration options:

<input type="text" name="date" field-split split-default-value="XXX" split-max-length="3" split-into="3" split-glue="-" />

Now using some method calls instead of static values as attribute values:

function Ctrl($scope) {

				 $scope.getDefaulValue = function() {
				 			return "***";
				 }
}
<input type="text" name="date" field-split split-default-value="getDefaultValue()" split-max-length="3" split-into="3" split-glue="-" />

Contact me

If you have questions, or just want to send your love/hate, drop me an e-mail at: [email protected]

#License

The MIT License (MIT)

Copyright (c) 2013 Fernando Doglio

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

angular-field-splitter's People

Contributors

asafdav avatar deleteman avatar ronicos avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

angular-field-splitter's Issues

shift tab on a full field, not working as expected

Great directive but I found a minor issue with it.
Using your own demo page, if you fill in the first example
123 then 456 then 78 and then you decide that the entry for 123 or 456 is not correct, if you use shift tab, the directive will immediately tab back again to the third input because it notices that the field is already full. If the mouse is used then there is no automatic tab to the third field.

Regards
Ronald

Demo

Do you have a demo online somewhere? Or perhaps some use cases? Would I be right in thinking this would be suitable for a date of birth input that could be split into 3 separate DD MM YYYY fields? Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.