Lines Matching defs:Ajax
29 // new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });
343 Ajax.Autocompleter = Class.create(Autocompleter.Base, {
364 new Ajax.Request(this.url, this.options);
374 // than sending out Ajax queries, which can be quite slow sometimes.
479 Ajax.InPlaceEditor = Class.create({
635 new Ajax.Updater({ success: this.element }, this.url, options);
643 new Ajax.Request(this.url, options);
684 new Ajax.Request(this.options.loadTextURL, options);
692 this.options = Object.clone(Ajax.InPlaceEditor.DefaultOptions);
693 Object.extend(this.options, Ajax.InPlaceEditor.DefaultCallbacks);
707 $H(Ajax.InPlaceEditor.Listeners).each(function(pair) {
750 Object.extend(Ajax.InPlaceEditor.prototype, {
751 dispose: Ajax.InPlaceEditor.prototype.destroy
754 Ajax.InPlaceCollectionEditor = Class.create(Ajax.InPlaceEditor, {
756 this._extraDefaultOptions = Ajax.InPlaceCollectionEditor.DefaultOptions;
789 new Ajax.Request(this.options.loadCollectionURL, options);
824 new Ajax.Request(this.options.loadTextURL, options);
855 Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {
869 Object.extend(Ajax.InPlaceEditor, {
936 Ajax.InPlaceCollectionEditor.DefaultOptions = {