Giter Site home page Giter Site logo

sirkitree / drupal-jeditable Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 108 KB

Fork of the Drupal jeditable project. Changes will be contributed back to the main project.

Home Page: https://drupal.org/project/jeditable

PHP 96.12% JavaScript 3.88%

drupal-jeditable's Introduction

jEditable inline editing module


Installation:

1. Place this module in your favorite modules directory (i.e., sites/all/modules/)
2. Download the jEditable jQuery plugin from http://www.appelsiini.net/download/jquery.jeditable.mini.js
     If you're in *nix and in the module directory, you can use this:
     wget http://www.appelsiini.net/download/jquery.jeditable.mini.js
3. Enable the module
     If you're at the command line, then hopefully you have drush you can use:
     drush en jeditable
4. Turn on the "use jeditable" permission for all rolls you want to have access to jeditable operations.
     The module respects basic node access, so saving using jeditable will only work if the user has "update" permissions on the node.
     However, if they don't have update permissions, they will still get the jeditable input forms, so this needs some thought for your application.
5. Go to the "display settings" of your node, or into the display settings for a view with fields in it and
     enable the jEditable textfield, jEditable textarea, jEditable datetime or jEditable noderefence fields as appropriate
6. Finally, load a node, "click to edit", and enjoy!



Instructions for Workflow integration

If you have the workflow module, you can use jeditable to change workflow statuses. It won't show up anywhere
by default, but you can place it in .tpl.php files by using the following theme function:

theme('jeditable_workflow', $node);

You can also use the computed_field module to get this to show up as a field in views and elsewhere. Use
the following snippets.

For "Computed Code":
$node_field[0]['value'] = workflow_get_state_name($node->workflow);

For "Display format":
$display = theme('jeditable_workflow', $element['#node']);

For Data type, select "varchar" and set data length to 60 (or whatever you set as maximum length for workflow state names)

What this will do is store the workflow state name in the database so that you can use this in views and sort by state name.
What is then displayed is themed jeditable select drop down.

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.