search for: aform

Displaying 7 results from an estimated 7 matches for "aform".

Did you mean: form
2008 Aug 01
0
Unexpected nls behaviour
Hi everyone, I thought that for a selfStart function, these two should be exactly equivalent > nls(Aform, DF) > nls(Aform, DF, start=getInitial(Aform, DF)) but in this example that is not the case in R (although it is in S-plus V6.2) ------------------------------ SSbatch<-selfStart( model=function(Batch, Coeffs) { Coeffs[Batch] } ,initial=function(mCall, data, LHS) { # Estimate coefficients...
2008 Aug 04
0
Unexpected nls behaviour: Solved
...r wasting anyones time. Keith Jewell ------------------------------------------------- "Keith Jewell" <k.jewell at campden.co.uk> wrote in message news:... > Hi everyone, > > I thought that for a selfStart function, these two should be exactly > equivalent >> nls(Aform, DF) >> nls(Aform, DF, start=getInitial(Aform, DF)) > but in this example that is not the case in R (although it is in S-plus > V6.2) > ------------------------------ > SSbatch<-selfStart( > model=function(Batch, Coeffs) > { > Coeffs[Batch] > > } > ,initial=f...
2006 Apr 18
1
Ajax.Updater: getting onComplete to fire in IE
Has anyone found a way to get onComplete to fire in IE? I''ve built a bunch of functionality around Updater and this is a show-stopper for me. I''m on the latest Scriptaculous. Thanks much, Jamie
2008 Jun 18
1
Form submit listener not catching form.submit();
Event listener for a form being submitted is not catching an A tag with a submit in it. Example JS: $(form).observe(''submit'', function(e) { e.stop(); // Something }); Example HTML: <a href="#" onClick="myForm.submit();">Submit form</a> Any idea how to fix this without added more js to button?
2007 Dec 15
3
List Box Issue - Should be easy, but nor for me!
I have the following snippet in my app: <% @anitem = Item.find(:all, :conditions => "id = " + params[:id]) %> <% form_for :anitem, :url => { :action => :updateitem } do |thisform| -%> ... ... (some code...removed) ... <%= collection_select :thisform, :item_category, ItemCategory.find(:all), :id, :name %><br> <%= collection_select :thisform,
2008 Aug 05
0
P values in non linear regression and singular gradients using nls
...r wasting anyones time. Keith Jewell ------------------------------------------------- "Keith Jewell" <k.jewell at campden.co.uk> wrote in message news:... > Hi everyone, > > I thought that for a selfStart function, these two should be exactly > equivalent >> nls(Aform, DF) >> nls(Aform, DF, start=getInitial(Aform, DF)) > but in this example that is not the case in R (although it is in S-plus > V6.2) > ------------------------------ > SSbatch<-selfStart( > model=function(Batch, Coeffs) > { > Coeffs[Batch] > > } > ,initial=f...
2007 Feb 25
5
Dynamically uploading a list that's already in a form
I have the classic case of: Posts, and Categories. When the user submits a post, he has a drop-down list of categories. I want to put a "Add category" link next to the list of categories. This is already inside a form, so a "link_to_remote" that creates a small AJAX form inside the "submit post" form will not work because that will mean to embed a form in another