search for: requiredfield

Displaying 3 results from an estimated 3 matches for "requiredfield".

Did you mean: requiredfields
2006 Aug 29
1
PATCH: Add fields argument to installed.packages and available.packages
...ckage", "Version", "Priority", "Bundle", - "Depends", "Imports", "Suggests", "Contains") - res <- matrix(as.character(NA), 0, length(flds) + 1) - colnames(res) <- c(flds, "Repository") + requiredFields <- c("Package", "Version", "Priority", "Bundle", + "Depends", "Imports", "Suggests", "Contains") + if (!is.null(fields) && is.character(fields)) + fields <- unique(c(require...
2005 Oct 27
5
Problem passing event object
Hi all, I''m having a problem with an Ajax.Request. I can''t figure out how I can pass 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(t...
2012 Mar 04
5
moving form validation to client-side
Hi I know with javascript we can validate the input of a form on the client, is there an easy way to specify this in rails? I am thinking the javascript code getting generated using some sort of DSL? -- Kind Regards, Rajinder Yadav SafetyNet Test Driven Development http://safetynet.devmentor.org -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: