I've managed to successfully integrate MarkItUp with Jeditable based on the instructions on those two sites. What I would really like to do, however, is to have the Jeditable/MarkItUp editing window appear in a Thickbox or Lightbox overlay. So far my attempts to do this have not been successful.
So, at the moment, I have the standard co...
I am using a jQuery jEditable edit-in-place field but when the JSON function returns and I try to return a value from my edit-in-place callback all I get is a flash of
You can see this here...
http://clareshilland.unknowndomain.co.uk/
Hit Ctrl+L to login...
Username: stackoverflow
Password: jquery
Although you can see the script in...
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:
<div id="status" class="editable_select">
<form>
<select name="value">
<option value="Active">Active</option>
<option value="Ina...
Jeditable is inserting extra spaces around the actual text in a text area for me when I click to edit some text. How do I trim this or actually fix this?
...
I'm using jeditable and it works really great! I'm just having some trouble figuring
out how to dynamically change the target URL.
jeditable is bound to a table of values that I want to edit inline.
So I have:
<td id="<%= col.id %>_<%= i.id %>" class="edit">
The id is a mashup of two values I need to know to edit this item on the se...
I did not make any changes on the code. I dont receive any errors but its not working.
I must be missing something very very simple here. Any suggestion appreciated...
...
Hello, this is my first time using JS, so i really have no idea what i am doing.
I have a table with data, and using jEditable to allow a user to edit the data and POST it to my php script. When user hits "Save", it opens jQuery UI with the data from php script and it seems to work fine, however, if the user hits Cancel or Esc to close ...
Hello,
I am trying to get jQuery.post() to run my php script and then open a jQuery UI dialog with the data that php script returns. Its supposed to come back as a form with a table and a textarea in it. It works great with alert(data); and i get a pop-up with all my data.
The problem starts if i turn off alert(). Now it opens 2 dialo...
Hi,
I am using inline editing using Jeditable and datepicker. I have a column in my table which displays Date as a hyperlink. When I click on this it shows me the datepicker. And when a particular date is selected its updated in the backend and the cell now is updated with the changed value. However, am having problem with onblur event...
I'm trying to use TinyMCE together with JEditable, as per SamSpeak's blog post.
I'm running into a small but annoying problem.
I set onblur="submit" in JEditable's settings. The behavior I expect (and want) is that as soon as the user clicks away from the editor, the editor submits the new data (in my case, to a function).
The problem ...
I'm looking for a way to programatically select all the content inside a TinyMCE editor instance.
The reason I need this is that I'd like it if all the text inside the editor was selected, as soon as someone clicks on it (I'm using TinyMCE in conjunction with JEditable, by the way).
Thanks,
Edan
...
I'm using jquery-ui's draggable for drag-and-drop, and jeditable for inline editing.
When I drag and drop an element that's also editable, right after it's dropped jeditable kicks in and pops into 'edit mode'.
How can I disable this behavior?
Edit - the problem happens because of netsting - see this example. I also added draggable to ...
Hello world,
I am having a funky problem. See (this link won't disappear): www.skitzo.org/~el/bugjeditable.png for the firebug output screenshot.
Here's my code. I run getJSON() to fetch the info from the PHP which pulls from DB and I fill a div with the result. I have jScrollPane and jEditable so a user can scroll down and click to ed...
(How) can I tweak jeditable to save the text when focus is lost from the text area? If you don't supply submit/cancel buttons, then when pressing 'Enter' the content is saved ... but I haven't found how to save the content on focus lost.
...
I am using Jeditable plugin with jQuery. My issue I'm having is that it completes list tags and other HTML tags. (Yes I know that this is awesome and is a good feature, I don't have any issues with it, but what I need it for it can't complete html tags)
How can I make it stop auto completing my html tags?
Thanks
...
Hi,
I am trying to attach AutoComplete of JQuery with JEditable.
Got the following eg on search. But it also does not seem to work.
http://www.pastie.org/978610
I want to attach AutoComplete to <td> of DataTable(Allan Jardine).
Does anybody have any code snippet for the same?
Pl help..
Thanks,
Bhoomi.
...
I have list items in an unordered list that when double clicked, can be edited in place via a wysiwyg editor.
$('ul.mtm_section').sortable({
disabled: true,
distance: 10,
items: '> li:not(:has(form))'
});
My goal is to prevent the list item from being sorted while it is being edited - aka once a form element has been swapped in ...
I'm using
var retval = value.replace(/<br[\s\/]?>/gi, '\n');
To strip the <br> tags from the textarea and nl2br('$_POST('newValueHere')') to insert into my database and to return back to jeditable to display the edits. The only problem I'm having is that each click on the editable field seems to make all the <br> tags be written twic...
Can someone explain to me how you would use jeditable with an ASP.NET web form (and C# codebehind). I've got a bit of experience with web forms but not very complicated stuff, and haven't used much jquery before, and this is just puzzling me. I understand how to put it in and attach it to the element you want to be editable, it's what je...
Hi,
After almost struggling for a week I have been able to make DataTable + JEditable + AutoComplete(BAssistance) with server side processing using Json to work.
I thought it would be useful to somebody out there.
$(document).ready(function() {
$('#example tbody td').editable( function(value, settings)
...