Is it possible to keep the styles whilst editing, kind of like a rich text editor? It currently changes to a plaintext editor but it would be nice if you could just press an edit button and it allows you to (truly) edit in-line
...
Hi everybody,
I'm trying tu use Jeditable to edit inline some content put in textareas.
So, I call the script files:
<script src="js/jquery.jeditable.js"></script>
<script src="js/jquery.jeditable.autogrow.js"></script>
<script src="js/jquery.autogrow.js"></script>
Then I have a function that sould send data to the server (I kept the...
For the jQuery extension Jeditable, one of the parameters that can be specified is which DOM event will turn a div/span/... into a text input/textarea/...
I would like to have more than one event serve as a trigger; that is, I would like either a click event or a contextmenu event to turn a span into an in-place edit area.
Is there a g...
Hello !
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:
<dt>Overview :</dt>
<dd class="edit_textfield" id="<%= @project.id %>" name="overview"><%= @project.overview...
Hi all,
I was wondering if you can stop text being editable on click? I have a separate edit button to make the text editable and that's the only way that I want the user to be able to edit the text, so want to turn off the on click editing?
Any ideas?
...
Hi everyone,
I recently upgraded jQuery to 1.4.2 and jQuery-UI to 1.8.2. Mistake or not, I started pulling my hair when I tried combining the new ui-autocomplete (not the old one from bassistance.de) with jeditable.
When I edit a field in my page (usually a span with a unique ID), user starts typing the name of someone and I manage to ...
Hi all
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 another button with some text, clicking which should redirect the user to another URL.
...
How do I style the select list element?
Here's my code as it is now...
$('.editableSelect').editable(function(value, settings) {
if (this.revert == value) {
this.reset();
return;
}
setSaveButtonRed(this);
setDescFromAccountCode(this, value);
return (value);
}, {
type: 'select',
submit: '<but...
Hello,
I am trying to figure out the way to edit a row of table by button with jquery and jeditable.
My aim is to have a "edit" button which will change desired row cells to edit mode.
As per now I have:
$(document).ready(function() {
$("#addrowbutton").click(function() {
$("#addrow").show();
});
$("#canceladd")....
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 seem to take effect.
.dynform input[type=button] {
border: 1px solid #dddddd; backgrou...
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, and the only time the tab key works is tabbing from the last field to the first, and of cou...
Hi,
I am trying to implement Jeditable for a timestamp field.
Example
2010-10-13 00:14 PDT
When the user clicks on the field, the date section should pop up a calendar or masked input
and the clicking on the time should pop up the editable time field.
I need a SINGLE submit for both, since the timestamp is just one field.
I looked...
I'm using JEditable and trying to populate a select based on a variable. I need a way to pass a variable from my page back through the JQuery to dynamically create the select.
JQuery:
$(".dblclick_district").editable('miscfreqs.php?mode=save_edit&module=miscfreqs&type=district',
{
type: 'select',
loadurl: 'tools.php?mode=get_d...
Has anyone ever used google reCAPTCHA with jEditable? I'm using PHP as a back-end.
When data is sent (and validated) from jEditable via AJAX: I show the the reCAPTCHA widget, but as soon as the user clicks on it: it inevitably turns into the textbox for editing.
All I'm basically asking is how would you use reCAPTCHA with jEditable? Sho...
Hello, I wanted check-in with all the jQuery folks to see, whats the latest, best plugin for In Place Editing?
I've used Jeditable way back when and figured there is likely something better by now as Jeditable doesn't appear to be maintained and it's a huge download (24kb+s?)
Any suggestions? I'm using Rails 3, so hopefully it supports...