search for: cancellink

Displaying 6 results from an estimated 6 matches for "cancellink".

Did you mean: cancelling
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
2005 Aug 11
7
script.aculo.us V1.5_pre1 released
Heya, I''ve just released script.aculo.us V1.5_pre1. Please give it a try! Important new stuff (since V1.1b1): * Added a main scriptaculous.js file to load in the other libraries transparently. * Fixed a condition where standard a href=xxx links wouldn''t work in autocomplete results. These do now, the onclick event is not cancelled. [thx to Jasper Slits] * Added
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 Nov 04
2
in_place_editor_field submitOnBlur & okButton=false options?
...tOnBlur 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 this messag...
2006 Aug 10
0
Ajax In place edit with Struts
...hat I am missing. 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 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