similar to: In-place textarea patch/diff for controls.js

Displaying 20 results from an estimated 5000 matches similar to: "In-place textarea patch/diff for controls.js"

2005 Aug 09
0
Update: In-place textarea patch/diff for controls.js
Ok, as per Thomas'' request - TEXTAREA in-place editor support now includes a unit test. (Nice framework btw) Updated svn diff attached. -San --- "sanzbox@yahoo.com" <sanzbox@yahoo.com> wrote: > From sanzbox@yahoo.com Tue Aug 9 00:39:19 2005 > Date: Tue, 9 Aug 2005 00:39:19 -0700 (PDT) > From: "sanzbox@yahoo.com" <sanzbox@yahoo.com> > To:
2005 Aug 02
4
Fwd: Re: disable ''tab'' key wish for incremental autocomplete of textareas
Hi Tim, Thanks for the commentary, you bring a good point to light: I think the asynchronous nature of AJAX needs to be looked at more carefully in our UI assumptions. The key difference between AJAX auto-complete and any other browser/OS autocomplete is that we can''t guarantee having the results ready by the time the user wants to hit TAB. In the old days we used to have everything
2006 Jun 05
1
formatting inside a <textarea>
I tried to put formatted text out to the browser when it was inside a textarea and got to look at markup. This might just be an HTML question. Is there a construct that will let me bound the size of text display with rows and cols like <textarea> but also let me html-format the internal text? I suppose I could hack up a table to use percentages. Maybe there is a CSS solution where I
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
2007 Apr 13
2
inplace editor and textarea
Hi, I have an inplace editor and I can access the innerHTML value of the created form. However the innerHTML gives "<textarea>....</textarea> ..." How can I access the textarea value? I tried to do innerHTML.textarea.value but it didn''t work. Any ideas will be appreciated. Thanks, Joe -- Posted via http://www.ruby-forum.com/.
2008 Aug 26
0
character limit for tinyMCE textarea
Hi, I am using TinyMCE editor for textarea.how to limit the characters in that textarea. 500 is limit for that textarea,how to limit characters for this textarea in client side. alert message after 500 characters or displaying dynamic count of characters above the text area. thanks, Ravi. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~
2008 Mar 09
0
textarea content text with tag html
I building a form for user profile editing. There is a textarea for description field. If the user insert in text area the code of a youtube video file, <object ... when he reeditingthe the descrption the text area have problems with rendering. the code of view is: <textarea name="description" id="description" ><%=@description></textarea> Is there a
2007 Oct 05
0
Rpad textarea handling
Hi. I'm trying to write an Rpad that edits scripts. Textarea seems like an obvious tool, but unlike other input elements, it seems that the contents are not sent to R on 'calculate'. To illustrate using the page below: load, F9, edit text, F9. The original contents of 'script' are restored. Furthermore, I can't eliminate the leading and trailing whitespace in the
2005 Aug 01
2
disable ''tab'' key wish for incremental autocomplete of textareas
I''m absolutely in love with the incremental autocomplete feature in the new scriptaculous. My one wish would be for some way of disabling the TAB key to prevent users from being able to tab out of an autocompleting textarea. (If they''re using TAB to select the autocomplete choice they end up tabbing straight out of the input field if autocomplete doesn''t find any
2007 Jun 22
5
assert_select trying to verify the presence of a textarea
Hello, One of my functional tests looks like this: def test_presence_of_free_text profile = Profile.find :first post :edit, {:id => profile.id} assert_select "textarea", :name => "record[free_text_ec]" end The test results in a failure, because the element cannot be found. I''m pretty sure the element should be there, and I''ve tried
2007 Aug 25
2
insert HTML <select> value into a textarea - Works in IE6, not in FireFox or Opera
I have a simple form at http://mstramba.com/fb5.html It''s just a <select> and a textarea. The idea is to be able to either type into a text area directly or choose from a list of saved words in the select box. When a new choice is made from the select, it automatically gets inserted into the text area. This code DOES work in I.E6 (on my machine (XP pro), but doesn''t
2006 Jan 05
6
InPlaceEditor and textarea
Hi to all. First of all exchuse for my bad english I try to use Ajax.InPlaceEditor with a textarea: ################## new Ajax.InPlaceEditor($(''ipblock''), ''tools/admin_save.php'', { ajaxOptions: {method: ''get''}, rows:10, cols:20, callback: function(form, value) { return ''op=ipblock&value='' + value},
2006 Jan 17
4
textarea problem with accentued chars
Hello, I have a problem with accentued characters return from a textarea I have 3 simple files to show example ( below ). index.rhml : If I put "?nial" inside the textarea, then submit to :action => post post.rhml : wrote ?nial 195 "\303\251nial" // params[:comment][:message] return => ?nial params[:comment][:message][1] return => 195 ! ( 195 is not
2007 Nov 19
3
wxRuby textArea??
I want to know wxruby can make textArea like java?? I can only use textbox with it but it has problem when I must use text that has many line, it can''t new line please help me -- Posted via http://www.ruby-forum.com/.
2006 Mar 09
2
How to keep formatting of text in textarea?
Hi! I''ve got a form for creating news and i''d like to keep formatting of the text in the textarea - if user presses enter twice, or presses space ten times it should be visible when editing or showing the news. Probably i should add before_save filter and some regexps for adding html tags, but i know almost nothing about regexp. Maybe there''s a simpler way also.
2009 Nov 05
1
tabIndex not working for select or textarea in form_for
Hello all, Maybe this is something easy to solve but I can set all my text_field tabIndex by { :tabIndex => ''2''}. When I try to do the same for the select or the textarea it doesn''t work. Is there something I''m missing? Thank you. John -- Posted via http://www.ruby-forum.com/.
2010 Mar 03
1
Html/JavaScript/CSS code ouput in TextArea-- Best Ways
Hello: What would be the best way to Output Code in TextArea for a UI component? The Rails App View is pure HTML and JavaScript. 1.render in text for controller action and the text is the code string. The < and > etc can be passed as is in this mode. 2.Read a HTML Template File (containing JS and CSS references) in Public directory(?) that needs to be substitute some variables that were
2009 Feb 23
0
Clear a textarea when I click on "Submit"
Hello everyone! My page reloads itself as soon as I click on "Submit". My question is : how can I clear the content which is in my textarea? I''m using the method submit_to_remote for my submit button. Thank you! -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google
2006 Mar 10
4
Problem with ajax and textareas on firefox but works on IE
Hi folks, I''ve been trying to figure this one out for a few hours now and can''t seem to understand what I might be doing wrong here. Basically, I have a textarea which has a little icon next to it which will fire off a reset of the original comment if pressed. It works under IE so that when the user types some garbase in to the textarea, and clicks the icon, the contents
2006 Apr 14
11
Whats the best Ajax way to update a textarea''s text?
I am looking for a way to update the text-value within a textarea from an Ajax render call inside of a controller. Is there a way to do this without rendering an the partial containing the textarea? Thanks, Andy -- Posted via http://www.ruby-forum.com/.