search for: switchrequir

Displaying 1 result from an estimated 1 matches for "switchrequir".

Did you mean: switchrequired
2005 Oct 27
5
Problem passing event object
...s an event (an onclick on a checkbox) which causes the Ajax Request, to be recognized in an onSuccess function. Here''s my simplified code: var RequiredField = Class.create(); RequiredField.prototype = { initialize: function(chkbox) { this.chkbox = chkbox; this.chkbox.onclick = this.switchRequired.bindAsEventListener(this); }, switchRequired: function(evt) { this.evt = evt; // Set the event to a property alert(this.evt); var params = $F(this.chkbox); var myAjax = new Ajax.Request(''server/checkRequired.html'', {method: ''get'', parameters: params,...