Code Monkey home page Code Monkey logo

jquery.inplace.edit's Introduction

jquery.inplace.edit

Another In place editor for jQuery, in beta stage.

Usage

To setup inplaceEdit:

$(function() {
    $(".liveEdit").inplaceEdit({css_input_classes: 'input-mini'});
})

It load proper html and put everything functional.

css_input_classes is applied to $("input").addClass(), so you can customize. More on that after.

A inplaceEdit isn't very much without possibility to save it. Take a look on events for it.

Events

You can bind to some events, every event have ".inplaceEdit" namespace.

inputLoad

Fired when you click on ".liveEdit" and input was show. Use it to apply masks and other custon js.

Example using jquery.meio.mask plugin:

$(function() {
    $(".liveEdit").inplaceEdit({css_input_classes: 'input-mini'})
        .bind("inputLoad.inplaceEdit", function(e) {
            $(e.target).select().setMask('decimal')});
});

inputUpdate

Fired when we have a update in field. Updates happens when user press Enter or Tab. Is up to you validate and save updated data.

Example:

$(function() {
    $(".liveEdit").inplaceEdit({css_input_classes: 'input-mini'})
        .bind("inputUpdate.inplaceEdit", function(instance, $input, $inputContainer, $valueContainer, e) {
            // You will receive many objects to make possibilities bigger
            $.post('.', {id: instance.$el.data('id'), value: instance.value});
        });
});

jquery.inplace.edit's People

Contributors

chronossc avatar

Watchers

 avatar James Cloos avatar

Forkers

fengfirst

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.