jeditable

Problems using jeditable and autogrow

I work on a Webproject using jQuery and CakePHP. I use jeditable as an inplace edit plugin. For textareas I extend it using the autogrow plugin. Well, I have two problems with this: First, autogrow does only work on Firefox, not on IE, Safari, Opera and Chrome. Second, I need a callback event for jeditable, when its finished showing t...

Ruby on Rails and jeditable (jquery)

Hi there, Has anyone gotten the jquery plugin jeditable to run properly in a Rails applications. If so, could you share some hints on how to set it up? I'm having some trouble with creating the "submit-url". Regards, Sebastian ...

jEditable - Activate edit of X by clicking on Y

I'm trying to use jEditable as an inline editing solution. The default behavior (click on the element to edit it) works quite well, but I would like to activate an element by clicking on another element. For example clicking on a.activateEdit will activate the next div.edit (obviously should be done using jQuery selectors). I've look...

Jeditable with jQuery UI Datepicker

I need to have a click to edit element on a page, that will in turn invoke an instance of the jQuery UI Datepicker. Currently, I'm using JEditable to provide the in place editing, which is working fine. However, I have a date control input that I would like to have appear as a calendar, which is where the fun starts. I've found a Comm...

Jeditable inserts 'Click to edit' after saving!??

My code is: $(document).ready(function() { $('.post_title').editable('editposttitle.php', { cancel : 'Cancel', submit : 'OK', indicator : 'Saving...', }); }); When saving text the text'Click to edit' is inserted into my element? instead of the saved text? Any ideas? Thanks! ...

JQuery JEditable stay in edit mode on error

I'm successfully using jeditable to submit via a function using jQuery.ajax and the async : false option , but am having an issue aborting if an error is returned. How can I get the edit box to stay activated and / or revert back to the original value if there are errors? I'm returning http status codes. so something like async : fals...

Tab key with JEditable fields

I have a page using JQuery and Jeditable to create editable text elements on the page. While editing an element, I would like to be able to tab from one element to the next. I am unsure of how to: Use jeditable or jquery to capture the tab key event (keycode = 9) Once that event is detected, move focus to the next element and acti...

Simple Jeditable Problem

I just started with Jeditable and for 3 hours now it seems I can't figure it out. This tutorial should have been piece of cake: http://www.appelsiini.net/projects/jeditable , but it turned out to be a little pain in the a$$. I've put the jquery.js and jquery.jeditable.js in the same directory with the main page. This is my code (it see...

Jeditable setting default selected value after change.

My app allows the user to update a field via a drop down box using jeditable. When the program is loaded i created this function to get the selected value and set it as the selected value in jeditable. But after i change the value, the selected tag stays set as the old value. how can i make it change to the new value? this is the funct...

how to get out of jquery (jeditable) mess

I am not very good at jQuery but decided to use jEditable plugin for my site because I thought it looked good and solved the purpose. However, I am in a bit of a tangle now. I used this plugin to edit data and the edited data is sent to the DB and some fields are updated by it. the Stored procedure that updates these fields is return...

Jeditable Async revert on error

Hi, I have been using the JEditable plugin for JQuery and I would like to return errors to the plugin to instruct it to revert to the previous value and also display an error to the user. I have this working using a synchronous ajax call but I would prefer to use asynchronous callback instead. The code I have to far is below. $("#edit...

jquery- jeditable not working

basically what I want is simple, when people onclick, the field become editable. After they change the value, press Esc at keyboard/ or click outside , to save the record. I'm not sure why it's not working. Documentation seems not complete... Anyone got idea on how this work? The documentation page: http://www.appelsiini.net/projects/...

Jeditable CANCEL callback from AJAX callback?

Hello, I see some answers for the Jeditable plugin to use a callback function from AJAX using complete callback function. I know that the Jeditable has a callback function for the SUBMIT button, so I would like to know if there is a way to have a callback for the CANCEL button? I haven't found on the plugin docs. Thanks for reply, Ca...

jEditable: Eliminate AJAX requests if data hasn't changed

Anyone see potential problems with optimizing away unnecessary ajax requests like this: $('.editable').editable(function(value, settings) { // check if changed at all if(this.revert == value) { this.reset() return } ... fire ajax request } ...

Ignoring XHTML markup when editing with jEditable

I am using jEditable to edit a table inline, the third column of which contains email addresses. This column contains plaintext, but it is converted to mailto: links using jQuery . Currently, when jEditable is activated, the user sees this: <a href="mailto:[email protected]">[email protected]</a> How do I force jEditable to treat th...

Using jEditable with ASP.NET MVC (POSTing)

Hello, I understand that with jEditable (http://www.appelsiini.net/projects/jeditable) you can do in-place editing and POST the changed information to a URL. My ASP.NET MVC view is displaying a bunch of Model information which I'd like to make in-place editable. Currently, I have two views - one text representation and one edit view in...

jeditable: how to set parameters based on dom element attributes

Often I find that I need to use jeditable on several areas each requiring different parameter settings. For example I use jeditable with autosuggest input type, and then I need to pass different data sources to the different inputs. I wanted to use just one instance of the editable plugin, and have tried to assign attr-values to the sc...

how to get to the value of manipulated dom element using _this_ Jeditable?

This is a Continuation of http://stackoverflow.com/questions/1255596 Please respond here.. this is my 'real' account.. I'm trying to assign different parameter values to different divs on which I have enabled the jQuery plugin 'Jeditable'. I can't get it to work, I'm sure its something simple.. but I can't figure it out.. How do I ach...

what hyperlink editor to use as jeditable inout type plugin?

I need to use jeditable for inline editing of hyperlinks. I want to handle the href part (the url) and the displayed link text with two separate input fields. I know about the various custom input types demo'ed at jeditables website, like the datepicker, and the masked input.. Could anyone recommend a hyperlink editor plugin to use in ...

jeditable edit all sections?

I am trying to figure out how to edit all the areas with a certain class with 1 edit button. This is my JS: I threw it into a function to be used over again. I have a surrounding div and inside of it are spans with classes of "details" How do I create 1 button "edit" and have them all trigger at one time? Trying to simulate the faceb...