search for: myfield

Displaying 16 results from an estimated 16 matches for "myfield".

Did you mean: mayfield
2006 Aug 11
5
actionmailler corrupting emails
...d a rec= eipt for your order.</p> <h2 id=3D"h2_artist">Order 59</h2> <div class=3D"mybox"> = <div class=3D"myform" style=3D"float:right; width: 50%;"> <h4>Shipping Info</h4> <div class=3D"myfield">234 6th Ave</div> <div class=3D"myfield">Suite 340</div> <div class=3D"myfield">New York</div> <div class=3D"myfield"></div> <div class=3D"myfield">10010</div> <div class=3D...
2007 Dec 03
3
Request param type of array
Hello. I have tested such form: <form method=''POST''> <input type=''hidden'' name=''myfield'' value=''value1''> <input type=''hidden'' name=''myfield'' value=''value2''> <input type=''submit'' name=''_submit'' value=''OK''> </form> =============...
2012 Jun 19
1
Reference classes and memory consumption
...eems that reference classes consume a lot of memory which became a problem for my rather extensive simulation. I prepared a small example. An instance of this minimal class uses about 20K on disk. rm(list=ls(all=TRUE)); MySmallClass = setRefClass("MySmallClass", fields = list( myField = "numeric" ), methods = list( initialize = function(f) { myField <<- f; }) ); o = MySmallClass$new(10); saveRDS(o, file="C:\\o.rds"); file.info("C:\\o.rds")$size; Result: [1] 21274 My questions: Is saveRDS() is representative...
2006 May 08
17
partial problem
def my_controller @variable = [{''myfield''=>''grey''},{''myfield''=>''blue''}] end #-------------------------my_view <table> <%= render :partial=>''my_partial, :collection=>@variable %> </table> #----------------------_my_partial <tr> &l...
2011 Jan 26
1
How to call subset in a for loop?
Dear all, I have a data frame 'myDf', in which one of the fields 'myField' can have several possible values. To extract the observations for which it has value "A", I can do: subset(myDf, myField="A") However, when I try to do this within a loop, it doesn't work, it returns everything, and not a subset for (currField in c("A", &qu...
2010 Jun 23
2
About normality tests...
...(Andy Field, 2005). I have a few questions to ensure that I am using them right. 1) The Shapiro-Wilk test requires to provide mean and sd. Is is correct to add here the mean and sd of the data itself (since I am comparing to a normal distribution with the same parameters) ? mySD <- sd(mydata$myfield) myMean <- mean(mydata$myfield) shapiro.test(rnorm(100, mean = myMean, sd = mySD)) 2) If I just want to test each distribution individually, I assume that I am doing a one-sample Kolmogorov-Smirnov test. Is that correct? 3) If I simply want to know if normality exists or not, what should I put...
2002 Dec 12
1
improving ts object
Dear all, Currently, a ts object behaves like an array, and it would be very useful to have a similar object, which would behave like a data.frame, i.e. it could be indexed, named, etc. like a data.frame. What would be the most efficient way to construct such an object? I have tried to make one on my own following the directions of class design from "S Programming" (2000) as a
2004 Sep 02
2
Polycom Microbrowser
.... It's running like a champ. Please refer to the Administrator's guide, pages 106, 107, and 53 to get it set up correctly. When creating web applications, be very careful about syntax. Here's a few gotcha's that I have found: WRONG: <input type="text" name="myfield"> <input type="submit" value="Click Me"> RIGHT: <input type="text" name="myfield" /> <input type="submit" value="Click Me" /> Notice the little slash on the end. This is very XML-based, so you MUST have perfe...
2006 Sep 03
9
using highlight from aaf
Hi, I''m trying to use highlight ferret method with trunk aaf and 0.10.1 ferret. In my search display I use: Myindexedclass.ferret_index.searcher.highlight(@query, result_line.id, :content) * searcher is a protected method; how can I access to the searcher from aaf ? * is the doc id in aaf the same as my model id ? * is the first param, query, the string query or the query object ?
2006 Jan 17
5
NOOB: Numeric only input...can it be done on client?
I was wondering if there''s a way to limit what a user is typing on the keyboard to only valid numeric input. Is there a simple plugin or something which would allow this? I guess with AJAX it could also be one. Has anyone already solved this requirement? Thanks in advance. James -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Mar 25
1
SIPPEER equivalent for users.conf ?
Hi, In sip.conf, it's possible to add a line such as setvar=MYFIELD=foo and access this value from diaplan with SIPPEER function. 1. Which function is available to access values in users.conf such as vmsecret ? 2. Is it possible to extend users.conf with custom keys/values ? Regards. -------------- next part -------------- An HTML attachment was scrubbed... URL:...
2006 Jun 24
6
convert 0, "0", "true", etc. to boolean
Hi, is there a ruby / rails builtin function that converts - 0 / 1 - "0" / "1" - "yes" / "no" - "true" / "false" to a boolean? cheers peter
2007 Jul 29
7
RDig and AAF playing together
...rray of search_paths with an element for index A and index B. However, when Index B is updated by AAF, RDig.searcher.search will not "see" the changes to Index B until I restart Mongrel (or restart script/console). If I query Index B directly through ClassB.find_by_contents("myfield:my_value") I see the updated results immediately with no restart. I know that RDig creates a single IndexReader for class. Does the IndexReader cache the segments files in memory? Does anyone have any ideas? Thanks in advance for your help! Erik
2005 Nov 10
4
write.table read.table with Dates
I've found several similar issues with write.table/read.table with Dates on this list, but trying to follow this advice I still get an error. First, I read in data from several files, constructing several date/time columns using ISOdatetime > str(Tall$Begin) 'POSIXct', format: chr [1:40114] "2005-10-02 00:00:00" "2005-10-02 00:00:00" ... > length(Tall$Begin)
2010 Oct 25
0
CDR updating
Hi, I am using Asterisk 1.6.2.13 and have an issue but I'm not sure if it's a bug or not. I am using the cdr_adaptive_odbc logging module and writing my CDR records to a MS-SQL server. I need to log which end hangs the call up and have placed the relevant CDR(myfield)=caller/callee commands where they need to be. When I watch the call on the console I can see the CDR field being set properly but when I check the CDR record it is incorrect. It appears that when one end hangs up the CDR is being written immediately instead of waiting until the h exten. I hav...
2006 Oct 09
3
text_field how to ?
I have a text field and want to let users insert multiple values - If I type one two , the sql statement is ''1 2'' if i put a comma between it turns it to 1\,\2 I need it to do ''1'',2'' I tried some regex but no luck because whatever I do to format I''m getting back slashes. Anything ? Stuart -- http://en.wikipedia.org/wiki/Dark_ambient