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

How to add dynamic click handler to jeditable

I'm trying update a table cell using jeditable so when the user clicks the cell it becomes editable. Below code works fine : $(".click").editable("http://www.appelsiini.net/projects/jeditable/php/echo.php", { indicator :…
blue-sky
  • 51,962
  • 152
  • 427
  • 752
5
votes
1 answer

Using best_in_place with rich-text editor like TinyMCE

I'm using the best_in_place gem to do in-place editing in a Rails application. However, I need (X)HTML editing on some of the text areas, so I need a rich-text editor. TinyMCE is being used elsewhere on the site. However, it's not trivial to add an…
4
votes
5 answers

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…
Dk589
4
votes
1 answer

Jeditable and jQuery UI Datepicker onblur cancel not working with showOn button option

I have configured datepicker to activate as following $(function () { $(".editable_datepicker").click(function (event) { $(this).editable('ajax_save.php',{ id : 'id', type : 'datepicker', …
cristi _b
  • 1,783
  • 2
  • 28
  • 43
4
votes
1 answer

Setting custom response using JEditable

I am using JEditable jquery plugin to update some data on my webpage. After the data is saved through the JEditable plugin on the server, I want to replace the old content in the container div with the new one which is actually different than the…
Ankit Jaiswal
  • 22,859
  • 5
  • 41
  • 64
4
votes
1 answer

jEditable submit on TAB as well as ENTER

My jEditables work fine as long as the user hits ENTER to leave the input. If the user hits TAB, however, the changes are not posted. This is the correct and documented behavior. I'd like TAB to work just as ENTER does. I don't need to affect any…
Larry Lustig
  • 49,320
  • 14
  • 110
  • 160
4
votes
1 answer

jeditable propagation

i'm using jeditable and I have nested elements all binded to jeditable. Problem is when I click on a nested element the click event gets triggered on the top most parent. How can I avoid this ? $(document).ready(function() { …
Alex
  • 247
  • 1
  • 13
4
votes
3 answers

Jeditable inserts 'Click to edit' after saving?

My code is: $(document).ready(function() { $('.post_title').editable('editposttitle.php', { cancel : 'Cancel', submit : 'OK', indicator : 'Saving...', }); …
Rigobert Song
  • 2,766
  • 2
  • 30
  • 47
4
votes
2 answers

Make TinyMCE Work Properly with JEditable

I'm using the Edit-in-Place JQuery plugin, JEditable: http://www.appelsiini.net/projects/jeditable. I would like to use TinyMCE when editing, so I found some extra script to make it work:…
Kamil Sindi
  • 21,782
  • 19
  • 96
  • 120
4
votes
2 answers

Add Jeditable fields to a delegate in jQuery

How can i combine the following with a delegate in jQuery? I have a #commentContainer surrounding all the editable elements, and I am dynamically adding editable fields (Jeditable). the editing ability is not working for dynamically loaded items. …
raklos
  • 28,027
  • 60
  • 183
  • 301
4
votes
1 answer

Jquery - Jeditable: How Reset to non-editable without page refresh

is it possible to reset to original state after changing class and applying the jeditable plugin say i have this example
test1
test2
and have this divs change class by…
Aries
  • 301
  • 3
  • 12
4
votes
1 answer

tabbing between jeditable fields in a table

I'm using code from here http://www.korvus.com/blog/geek/making-the-tab-key-work-with-jeditable-fields/ to get tabbing between jeditable fields working, and if the fields are on their own it works fine. However I need to have my fields in a table,…
matjkd
  • 103
  • 1
  • 6
4
votes
1 answer

jeditable button styling

How do I style the buttons generated by jeditable? I am styling the textarea like.. .dynform textarea { width:450px; max-width: 2450px; height:200px; } where .dynform is the cssclass parameter to jeditable. But the button style don't…
badnaam
  • 1,876
  • 4
  • 29
  • 53
4
votes
1 answer

Jeditable Not Returning "id" Value

I can't seem to get the proper return of "id" from my Jeditable function. Code looks like this:
  • EDIT THIS TEXT
  • I call the jeditable function like…
    cTho
    • 57
    • 3
    4
    votes
    1 answer

    jeditable: additional buttons with "Ok" and "Cancel"

    Is there a way I can add additional buttons with click event handlers to jeditable (jQuery plugin)? What I want to do is, when you click on some editable element and the input element with "Ok" and "Cancel" buttons show up, I would like to add…
    Kunal
    • 1,440
    • 4
    • 14
    • 37
    1 2
    3
    34 35