search for: therow

Displaying 4 results from an estimated 4 matches for "therow".

Did you mean: theroy
2009 Jul 24
6
Routes from raw js (using XMLHttpRequest)
...g somewhere and I believe that because in firefox, the error concole is clean. Can someone tell me from my js below where I am posting, or why my controller method isnt getting the post? Thanks, Janna B //this function is getting called by an onchange in the associates select function assocchange(therow){ var s = document.getElementById("assoc"+therow).value; var url = "/channels/assocboxchange/" var parameters = "assoc=" + escape(encodeURI(s)) + "&id=" + therow; formid="assoc" + therow; makePOSTRequest(url, parameters, formid) }...
2005 Aug 22
3
read a table ignoring specific rows ?
...called infile : 1 2 3 4 5 6 7 8 9 I would like to read it and ignore the rows with 1st element > 3 I do it now with a for loop, and it's ok, but I was expecting something simpler, like : intable = read.table(infile); newtable = intable[isgoodrow(intable)]; where : isgoodrow = function(therow) {if (therow$V1 > 3) return(F) else return(T);}; (... but this don't work). So, could somebody please tell me if there is a way to read a table ignoring specific rows, without using a for loop ? ... and if yes how ? Thanks Vincent
2011 Nov 03
1
Help with CA Certificates for user authentication?
As background, I read: http://therowes.net/~greg/2011/03/23/ssh-trusted-ca-key/ http://www.ibm.com/developerworks/aix/library/au-sshsecurity/ http://bryanhinton.com/blog/openssh-security http://www.linuxhowtos.org/manpages/5/sshd_config.htm http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&taskId=120&...
2007 Nov 08
0
Adding oonclick handler to certaii elements
Hi all I''m new to Prototype, and am stuck at trying to bind an onclick event- listener to some table rows. I have normal table (don''t worry, it IS tabular data). I would like a certain function to fire when rows with a specific className is clicked, so I do this: var theRows = $$(''tr.details''); Now, I then try to use the ''each'' function,like this: trs.each(Event.observe(Element,''onclick'',myFunction(''''))); Obviously wrong ... I''ve digged through the api-docs, but can''t find the...