Displaying 20 results from an estimated 50000 matches similar to: "In Place Editor help"
2006 Mar 27
5
InPlaceEditor convertHTMLLineBreaks
I''m curious if anyone else has a need to disable
*convertHTMLLineBreaks*. I actually need to show the <p>''s and <br>''s
in the editor and browsing the source code, see that this isn''t
configurable.
Jamie
2006 Jan 25
10
Ajax.InPlaceEditor onSuccess: ???
I''m looking for onSuccess: in Ajax.InPlaceEditor, but it doesn''t
appear to exist. onComplete isn''t what I need because I only want my
callback on success. Is there a way to do this?
Thanks,
Jamie
2005 Oct 18
0
RE: Error: "onclick() is not a function"
I see what he is saying now. When you assign a click event with the
Event.observe it does not allow you to call it with the
$(''xxx'').onclick(); command as it''s looking for the onclick tag in the a
tag.
I''m stumped on a way to get this to work.
Jon Whitcraft
Web Application Developer
Online Services - Indianapolis Motor Speedway
(317) 492-8623
2005 Aug 21
0
[PATCH] in-place-editor, AJAX loading
I sent this on Friday but somehow managed to email it to the wrong email
address!
----
Attached is a patch to add external (AJAX) loading of content to the
InPlaceEditor.
2 extra options have been added:
loadUrl:
a URL to load the content from. If this is present, it will be used
instead of the innerHTML.
fieldId:
I had to add this so we know what the text field is when we''ve
2005 Oct 17
11
a better question
I''m trying to call a click() event on an <a href> that has an
Observable registered for it. Something like:
<a href="#" id="toggle_1929">show</a>
...
Event.observe("toggle_1929", ''click'', function(event){ Element.toggle
("group_1929"); return false; });
...
$("toggle_1929").click(); //this throws
2008 Jun 06
2
Scriptalicious: Ajax Inline Text Editor
Hi, I''m just starting out with Scriptalicious + Prototype, and I''ve
run into a problem.
I''m trying to create an Ajax.InPlaceEditor that combines the custom
size textbox, and the custom parameter (from the examples in the
scriptalicious documentation)
http://github.com/madrobby/scriptaculous/wikis/ajax-inplaceeditor
I''ve tried a couple different methods (one of
2006 Jan 09
6
inPlace Editor
HI, I am a new to the group.
I have run into the following issue.
The following works fine
<h1 id="tobeedited">To be edited</h1>
<script>
new Ajax.InPlaceEditor($(''tobeedited''),
''_ajax_inplaceeditor_result.html'', {
ajaxOptions: {method: ''get''}
});
</script>
But I want to pass some more
2005 Oct 26
2
Troubleshooting inplace editor
I can''t get the inplace editor to do anything for me. The output appears as
regular formated, unclickable text. Maybe I am missing something simple.
1. I just downloaded script.aculo.us <http://script.aculo.us> 1.5_rc3 and
copied it to my javascript folder.
2. To set up a simple test, I created a new test page containing only the
copied from demo1 from the script.aculo.us
2005 Oct 04
5
sorting
I just want to confirm that it''s *not* possible to sort <tr>s in
tables....
Jamie
2005 Oct 04
2
sorting error "Error: item.id has no properties"
I''ve got some sorting working now, but when the page loads and when I
drag, I keep getting this error:
"Error: item.id has no properties"
My <ul> and <li> elements all have ids. Do child elements all need ids?
Here''s the code from dragdrop.js where the error is being thrown ( a
few lines from the bottom of the file, line 501--HEAD version)
serialize:
2005 Oct 03
3
Sortable and the Server
I want to build a sortable list that updates the server when the item
is dropped into its new position. How to create a sortable list is
clear, but I''m looking for an example of how to integrate this with
the server side. Are there any examples or tutorials around? I''m
working in a java environment.
Thanks,
Jamie
2006 Sep 25
3
In place editing an empty field
I am trying to use the Scriptaculous InPlaceEditor and in some cases the
field will be empty. That is, the field currently has no value but the
user wants to enter a value.
The InPlaceEditor appears to not work in this case. Other identical
fields (except wit different ids and some value) do work.
I have tried using a nonbreaking space ( ), and this does cause the
editor to appear,
2005 Oct 04
3
serialize()
Near the end of the Sortable.serialize() method, there is a split
command that splits on an underscore. What is the convention it''s
following here and is it documented somewhere?
Thanks,
Jamie
serialize: function(element) {
element = $(element);
var sortableOptions = this.options(element);
var options = Object.extend({
tag: sortableOptions.tag,
only:
2005 Oct 15
3
latest prototype breaks toggle
I''ve found that when I revert this change, toggle works again.
Otherwise, it''s broken (Mac OS Tiger, Safari and Firefox):
- element.style.display =
- (element.style.display == ''none'' ? '''' : ''none'');
+ Element[Element.visible(element) ? ''show'' : ''hide''](element);
I looked
2007 Jan 11
2
In-place editor for a whole form?
I want to implement in-place editing for a hierarchical structure where
the nodes are not simple text fields, but need to be represented by at
least two input elements.
The Rails helpers only support in-place editing for a text field,
scriptaculous''s controls.js beyond that implements support for an
in-place editor containing a select element. I need an editor where I
essentially
2005 Oct 17
2
triggering event handlers
I''ve registered onClick events I want to trigger from javascript, but
can''t seem to find a way to do this. It seems like it should be
obvious and easy, but I''m not finding the answer. :-(
Thanks,
Jamie
2005 Dec 27
2
ruby 1.8.2 or 1.8.3 on Linux?
I''ve seen some reports of problems with running Rails (version 1.0
here) on Ruby 1.8.3. Is this true across the board or just Mac OS?
I''m setting up a Linux server and want to know if 1.8.3 is ok on that.
Thanks,
Jamie
2005 Oct 13
6
performance
I''ve got a page I''ve implemented a bunch of observables and
sortables. There are around 330 items in the list. The Observables
(for hide/show of sublists) don''t seem to impact performance, but the
Sortables take a very long time to load when the page is refreshed or
submitted--even after accounting for the server-side processing and
latency. I''ve
2005 Sep 01
2
FW: externalControl for in-place editing Browser in-compatibility
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Anyone have any ideas on this one, it appears that that $() is not working
to get object by id in Mozilla based browsers.
Does anyone know how to fix this? I am a n00b to javascript.
Is this a bug or am I doing something wrong? Can someone please confirm
this.
- -----Original Message-----
From: Stephen Major [mailto:smajor@gmail.com]
Sent:
2005 Jan 29
4
format question
how can I get a float to always print two decimal places?
Thanks,
Jamie