search for: customerlist

Displaying 2 results from an estimated 2 matches for "customerlist".

2004 Apr 04
1
How to improve this code?
...*************************************************** library(fields) #Format of input files: ID, LONGITUDE, LATITUDE #Generate Store List storelist <- cbind(1:100, matrix(rnorm(100, mean = -60, sd = 3), ncol = 1), matrix(rnorm(100, mean = 50, sd = 3), ncol = 1)) #Generate Customer List customerlist <- cbind(1:10000,matrix(rnorm(10000, mean = -60, sd = 20), ncol = 1), matrix(rnorm(10000, mean = 50, sd = 10), ncol = 1)) #Output file outfile <- "c:\\output.txt" outfilecolnames <- c("rank","storeid","custid","distance") write.tab...
2005 Sep 22
6
Autocomplete - setting a second value?
I''m using the autocomplete function, and need a way to grab a second value from the ajax request... an example would probably speak better: This is my HTML: <input name="CustomerName" id="CustomerName" type="text" /> <div id="CustomerList"></div> <input name="CustomerID" id="CustomerID" type="hidden" /> <script>new Ajax.Autocompleter(''CustomerName'',''CustomerList'',''crmLookup.aspx'', {});</script> And this is my ajax...