Questions tagged [jeditable]

Jeditable is a jQuery plugin that allows users to edit page contents "in place".

Jeditable is a jQuery plugin that allows users to edit page contents "in place". Contents can be edited using plain textfields, textareas, comboboxes and jQuery Datepickers (as an extension,not natively supported).

Project page: http://www.appelsiini.net/projects/jeditable

GitHub page: https://github.com/tuupola/jquery_jeditable

511 questions
7
votes
3 answers

Jeditable to edit a link. Help

I have been playing around with jeditable for 2 days now, and it's great! But I got a little problem, I have a link which should be editable, but whenever the field become editable, I can't edit that field, when I click, it jumps right to that…
Santana
  • 232
  • 2
  • 11
7
votes
2 answers

Jeditable - highlight all text after double click

is there any options on jeditble so when i double click my text and the textbox pops up that it highlights all of the text
leora
  • 188,729
  • 360
  • 878
  • 1,366
7
votes
1 answer

Jeditable CANCEL callback from AJAX callback?

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…
Carlitux
  • 97
  • 1
  • 6
6
votes
2 answers

Serialize form in a "hash format"

In the documentation of jeditable for the submitdata param (a parameter to include some extra params in the ajax request) it is said: (Mixed) submitdata: Extra parameters when submitting content. Can be either a hash or function returning a…
Javi
  • 19,387
  • 30
  • 102
  • 135
6
votes
2 answers

Making JEditable work on new elements (.live)

I'm using the JEditable plugin for in-place editing. I have a "setup" function which calls .editable() on all the relevant classes. The problem is, I have newly appended elements which I'd like to make editable as well. Obviously, being newly added,…
Edan Maor
  • 9,772
  • 17
  • 62
  • 92
6
votes
1 answer

datatable editable is having issue with IE

I am working on SharePoint 2010 with spservices, datatable, jeditable and datatable.editable. My version of the frameworks are as follows IE 9, 10, 11 jQuery 1.7.2 spservices 2013.01 datatable 1.9.4 datatable editable 2.3.3 jedittable N/A Now…
Milind
  • 1,855
  • 5
  • 30
  • 71
6
votes
5 answers

jEditable select dropdowns change the order of the options

Here's the code I'm using to add a select dropdown to a table row using jEditable: $('tr',this).find('td:eq(8)').css('cursor','pointer') .editable( 'update.php', { 'type': "select", 'loadurl': 'json.php', 'onblur':…
Blazemonger
  • 90,923
  • 26
  • 142
  • 180
6
votes
1 answer

How to send multiple variables in jeditable?

i'm quite new to jquery and right now, im using jeditable to let the user edit some information on my webpage. So here's my problem, How do you send multiple variables to the php file using jeditable? i understand that when the user clicks the…
6
votes
2 answers

jQuery jEditables - Select with optgroup

I am using jEditable and am wondering if if it is possible to have a select (type=select) with optgroups?
Rooneyl
  • 7,802
  • 6
  • 52
  • 81
5
votes
2 answers

Can the onblur event be used with Jeditable and jQuery UI sortable?

I am making use of the jQuery UI sortable interaction and Jeditable. The idea being that a user can reorder elements and affect the content of those elements. What I am running into is that the onblur event that I have Jeditable setup to listen for…
ahsteele
  • 26,243
  • 28
  • 134
  • 248
5
votes
1 answer

Using Jquery datatable jeditable without mandatory field URL

How can you use jquery.datatable and the jeditable plugin without a url. I just want edit functionality without saving to the server. This is what I've tried: $('td', oTable.fnGetNodes()).editable(function(value, settings) { console.log(this); …
5
votes
2 answers

jeditable - disable it at runtime

is it possible to disable jeditable for a table at runtime? The case: I got different steps for the User, the table is always visible, but should be just in one single step editable. The user can switch the steps as he likes. I found nothing about…
maddin2code
  • 67
  • 1
  • 4
5
votes
1 answer

How to edit/save multiple fields at once using JQuery+JEditable?

I have a set of texts on a page (for simplicity's sake, let's assume I have two), which I'd like to be editable individually, in place, so I'm using JEditable to achieve that and it works perfect - I click one text, it converts to a drop down, I…
Riddler
  • 51
  • 1
  • 3
5
votes
3 answers

jeditable and rails 3

I'm trying to use jeditable with my rails 3 apps. I would like to edit some fields inline. Actually it's working on my client side but the data isn't updated in my app. Could you take a look? Thanks in advance! my view:
Overview :
Fabien
  • 273
  • 5
  • 12
5
votes
1 answer

jQuery + Jeditable - detect when select is changed

I'm using Jeditable for in-place editing. One the controls I am working with has the select type. When a user clicks on the field, the following select control is generated:
Bryan Roth
  • 10,479
  • 15
  • 47
  • 56
1
2
3
34 35