search for: oktext

Displaying 10 results from an estimated 10 matches for "oktext".

Did you mean: tktext
2006 Feb 21
6
Help with Script.aculo inPlaceEditor
...laceEditor( element, url, [options]); It''s simply. My doubt is for example how to change the value for "Ok" and "Cancel" button . I try with this: new Ajax.InPlaceEditor(''aNombre'', ''productos.php?a=actualizar&f=aNombre'',''okText=Update cancelText=''Leave changes''''); But not works Best, -- ReynierPM 4to. Ing. Informática Linux User: #310201 El programador superhéroe aprende de compartir sus conocimientos. Es el referente de sus compañeros. Todo el mundo va a preguntarle y él, secretamente, lo fo...
2007 May 06
2
InPlaceRichEditor V 1.1.1 released
Hi all, Just few days after the version 1.1 released I may like to announce the release of the version 1.1.1 fixing a bug when loading external text (Thanks to Robert Muzslai). I''ve also added to the website a version feed to keep looking at the new release easier. http://inplacericheditor.box.re Have fun ;-) -- Sébastien Grosjean - ZenCocoon
2006 Nov 04
2
in_place_editor_field submitOnBlur & okButton=false options?
...; submitOnBlur options? Basically, I want no submit button, a cancel button, and the ability to submit when I tab out of the field. Is this doable without writing a helper? (avoiding digging that deep so early on in my rails learning) Script.aculo.us wiki shows a variety of options: okButton okText cancelLink cancelText savingText clickToEditText <...snip...> onBlueSubmit If I can pass :save_text onto scriptaculous, why can''t I also pass the other options as well? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received...
2005 Oct 05
5
InPlaceEditor crash on Safari
Quick question.. I often crash my Safari when using ''Enter'' on InPlaceEditor''s for submitting. Works fine on firefox(win & Mac) - no javascript errors. Anyone else seen this behavior? (Maybe it is just my alterings of InPlaceEditor :-) Best Regards Michael Krog
2006 Feb 08
9
InPlaceEditor - IMG for OK / Cancel?
Hi all, Is it possible to use images instead of plain text for the "OK" and "Cancel" controls? Thanks, Best Regards, EJC _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2006 Aug 10
0
Ajax In place edit with Struts
...This is the way that I am calling the script.. new Ajax.InPlaceEditor(''1'', ''<%=request.getContextPath()%>/examples/test.do?method=post'',{ callback: function(form, value) { return ''gText='' + encodeURIComponent(value)}, cancelLink:false, okText:"Save", ajaxOptions: {method: ''post''}}); This is the text that I am entering ?b?cos? and it becomes like this when it comes back ???b???cos???. Regards, P. -- Posted via http://www.ruby-forum.com/.
2006 Mar 01
2
In_place_editor in a For loop
I''m using Ajax to create a list of items. Once these items have been created the user can edit in place and delete them. I''ve got the ajax working for delete and removing the element from the page, but the in_place_editor_field doesn''t seem to like being in a for loop. I''ve got in_place_editor working for single items, but what''s the syntax
2006 Aug 02
2
Passing Ajax.InPlaceEditor options
I''ve followed the instructions in the Rails Recipe #1 and have the in_place_editor_field working but now I want to tweak how it looks and behaves. I''d like to be able to override the default yellow highlight color, which is done using the highlightcolor param according to the scriptaculous documentation (unless I''m missing something). I''m new to Ruby and Rails
2006 Mar 25
0
in_place_collection_editor
...}]" if options[:collection] + js_options[''value''] = %(''#{options[:value]}'') if options[:value] + js_options[''cancelText''] = %(''#{options[:cancel_text]}'') if options[:cancel_text] + js_options[''okText''] = %(''#{options[:save_text]}'') if options[:save_text] + js_options[''loadingText''] = %(''#{options[:loading_text]}'') if options[:loading_text] + js_options[''externalControl''] = "''#{options[:e...
2006 Mar 07
6
[PATCH] Allow Ajax.InPlaceCollectionEditor to load collection externally
Attached is a patch to allow Ajax.InPlaceCollectionEditor to load the collection using AJAX. It adds a new option, loadOptionsURL, which is the URL used to load the values over the interweb. It expects the server to return <option></option> values. If one of them has a selected="selected" attribute, it will probably be pre-selected. Not tested that though. Also only tested