search for: onclickcancel

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

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
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
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
2007 Apr 16
2
Discussion on wysiwyg-for-script-aculo-us-inplaceeditor-using-tinymce
...e moment. However, when you click cancel and go into in-place editing right after again, the textfield does not switch into WYSIWYG mode anymore. That behaviour is correct, because you do not disconnect the editor instance form the DOM tree on cancel. I''ve added your toggle script to the onclickCancel function in the modified controls.js: /* begin TinyMCE addon */ if (this.options.veButton && this.options.veIsOn) { this.veToggle(); } /* end TinyMCE addon */ That resolves the problem. I hope this helps :-) --~--~---------~--~----~------------~-------~--~----~ You received this messa...
2006 Mar 02
0
[PATCH] small correction to allow editing of html with Ajax.InPlaceEditor
...-628,7 +628,7 @@ onLoadedExternalText: function(transport) { Element.removeClassName(this.form, this.options.loadingClassName); this.editField.disabled = false; - this.editField.value = transport.responseText.stripTags(); + this.editField.value = transport.responseText; }, onclickCancel: function() { this.onComplete();
2005 Aug 21
0
[PATCH] in-place-editor, AJAX loading
...dExternalText: function() { + new Ajax.Request( + this.options.loadUrl, + { + asynchronous: true, + onComplete: this.onLoadedExternalText.bind(this) + } + ); + }, + onLoadedExternalText: function(t) { + $(this.options.fieldId).value = t.responseText; + }, onclickCancel: function() { this.onComplete(); },