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
0
votes
1 answer

Method call function in a table row clone editable

I have cloned the rows in my table editable. The rows have 2 column editable, 1 with editable textarea and the other one with an input numer. There is a function which sum the numbers in the two input numbers and give the total. You can try here,…
Koala7
  • 1,340
  • 7
  • 41
  • 83
0
votes
1 answer

Jquery event for the function calculator

I have this table and i can not make working the function calculator in the td. The script works perfectly but when i edit the number in the cell( just clicking over the cell to get the input number), i do not get the Total Result. Can you explain…
Koala7
  • 1,340
  • 7
  • 41
  • 83
0
votes
1 answer

Autocomplete and jeditable-datepicker not working together in Jeditable

I am using jeditable and i needed to integrate with jeditable-datepicker and Autocomplete everything works fine apart from this incompatibility between them. I have noticed that the problem is caused by the script
Koala7
  • 1,340
  • 7
  • 41
  • 83
0
votes
0 answers

jeditable callback has empty values

Possible Duplicate: jeditable callback has empty values //OR// How to display edited text after clicking save button? In my code I found value and settings are empty in callback function... can anyone help why is that…
rajeev
  • 1,275
  • 7
  • 27
  • 45
0
votes
1 answer

jeditable editable routine not firing

following is my code. the double click event is not being catch and executed by the jeditable. javascript: $(document).ready(function(){ $(".edit_area").editable('http://my_cgi_url', { event : 'dblclick', type :…
rajeev
  • 1,275
  • 7
  • 27
  • 45
0
votes
1 answer

jEditable Conflict with bootstrap editable

// using jEditable $('.element').editable('http://www.example.com/save.php'); //using bootstrap editable $('.element').editable({ type: 'text', pk: 1, name: 'username', …
0
votes
1 answer

Jeditable: access tag data params within the configuration

Hope someone can help me as I've been searching for hours. I'm planning on using jeditable for in place editing with ruby on rails. I can do normal text just fine but I'm having some problems with the select option. I'd like to pass the data to the…
Oktav
  • 2,143
  • 2
  • 20
  • 33
0
votes
2 answers

Is it possible to add headings to a jEditable select drop down

Is it possible to add headings to a jEditable select drop down? I want to add headings to data sets in a single select. This would be the equivalent to OPTGROUP in an HTML select. If this possible? If so how? If not, any ideas where I'd start to…
fastedy
  • 11
  • 1
0
votes
1 answer

Jeditable text area width

i am using jeditable http://www.appelsiini.net/2008/4/autogrow-textarea-for-jeditable Here is the code for the same $('.serisC').editable('series_edit_ajax.php',{ type : 'textarea', id …
sudeep cv
  • 1,017
  • 7
  • 20
  • 34
0
votes
1 answer

jEditable Select Data Source

I am trying to update a field using a jEditable select. I am pulling the data for the jEditable select from my database. The query array looks like this: Array ([0] => Array([conference_id] => 1 [conference_name] => Allegheny Mountain) etc… I want…
WebDev84
  • 331
  • 5
  • 17
0
votes
1 answer

Jeditable - Suppressing clicks inside element

I have an element in my page that is editable with jEditable. The behaviour I'm looking for and can't find a way to implement is that I want the field to become editable on a click event, and I want it to be submitted only on a blur event. The…
Ohad
  • 1,719
  • 1
  • 16
  • 20
0
votes
1 answer

editing a newly added row using jeditable and on() in jQuery 1.7 from a button

I have a data table and I add rows from a button at the top of the table. I also am able to select rows. I would also like to be able to edit those selected rows even if they are newly added. I use something like this to select a row even if it's…
user197674
  • 748
  • 2
  • 7
  • 22
0
votes
2 answers

Access to other variables inside of jeditable

I'm really new to javascript, so sorry for my ignorance. In jeditables, you can specify a callback function. I'm using all this code in a separate script. Is there a way to pass variables into this callback function? for example: var info =…
user197674
  • 748
  • 2
  • 7
  • 22
0
votes
1 answer

refresh datatable after delete

I have the following code and I want to refresh the datatable ater I deleted the record. Currently I have to refresh browser manually ...what can I do?