Displaying 13 results from an estimated 13 matches for "lastvalu".
Did you mean:
lastvalue
2005 Nov 04
1
prototype EventObserver on radio option elements
...ng
within the prototype library. Please enlighten me if that is so.
I started by adding an EventObserver to each radio element in the same
group of radio options. However, the event (which is tied to onclick)
was only fired once per element. It seems that the EventObserver
records the "lastValue" and only fires if it hasn''t changed. For a
radio element, it only changes once: when you first click on it (and it
becomes checked) its value changes from "undefined" to the value of the
radio option. Clicking on a different radio element unchecks the first
element,...
1997 Sep 02
1
R-alpha: R interaction within ESS-4.9-b11: two small issues
...; or this one...
That does not seem to work. I believe that under the present
structure you must require essd-s+3 to get definitions of some
functions used by the other dialects. Perhaps that dependency could
be removed at some time.
2) I think the current definitions
essd-r.el:61: (ess-retr-lastvalue-command . ".Last.value <- get(\"smode.lvsave\",envir=1)\n")
essd-r.el:62: (ess-save-lastvalue-command . "assign(\"smode.lvsave\",.Last.value,envir=1)\n")
may be misusing the "envir" argument. I am getting messages in the
interaction wi...
2002 Aug 07
1
ESS assigns .Last.value to the wrong place in R
..., and I think some resolution is needed.
When help() is invoked, ESS makes a copy of .Last.value in the .GlobalEnv,
which is *not* where R normally stores it (R stores it in package:base).
When this copy becomes stale it leads to wrong answers. The bug is in
essd-r.el, lines 63-64:
(ess-retr-lastvalue-command
. ".Last.value <- get(\".ess.lvsave\",inherits=TRUE)\n") ; envir=1
which should be changed (as I have done on my machine) to:
(ess-retr-lastvalue-command
. "assign(\".Last.value\", .ess.lvsave, envir=NULL)\n") ; package:base
Here&...
2007 Dec 26
2
How to display what item you've dropped item in a sorted list ?
http://wiki.script.aculo.us/scriptaculous/page/print/SortableFloatsDemo
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group.
To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
2005 Jul 19
0
quick dragdrop question
...d play with the two lists. selectItem() gets
called whenever an item is dropped onto the list, with a single argument being
the UL that it''s being dropped on to. Inside the callback, ''this'' refers to an
object that also holds a ref to the UL, and a string called ''lastValue'' with a
value of
"secondlist[]=undefined&secondlist[]=undefined&secondlist[]=undefined&secondlist[]=undefined&secondlist[]=undefined&secondlist[]=firstlist2&secondlist[]=undefined"
which I won''t pretend to understand :-)
How do I get a ref to...
2004 Apr 28
0
Emacs Speaks Statistics version 5.2.0 has been released
...ess-help: Now using nice underlines (instead of
`nuke-* ^H_')
* ESS[R]: After (require 'essa-r), M-x ess-r-var allows to load
numbers from any Emacs buffer into an existing *R* process; M-x
ess-rdired gives a "directory editor" of R objects; fixed
ess-retr-lastvalue-command, i.e. .Last.value bug (thanks to David
Brahm)
* ESS: Support for creating new window frames has been added to ESS.
Inferior ESS processes can be created in dedicated frames by
setting inferior-ess-own-frame to t. ESS help buffers can also
open in new frames; see th...
2004 Apr 22
0
Release candidate (5.2.0rc3) of Emacs Speaks Statistics
...ess-help: Now using nice underlines (instead of
`nuke-* ^H_')
* ESS[R]: After (require 'essa-r), M-x ess-r-var allows to load
numbers from any Emacs buffer into an existing *R* process; M-x
ess-rdired gives a "directory editor" of R objects; fixed
ess-retr-lastvalue-command, i.e. .Last.value bug (thanks to David
Brahm)
* ESS: Support for creating new window frames has been added to ESS.
Inferior ESS processes can be created in dedicated frames by
setting inferior-ess-own-frame to t. ESS help buffers can also
open in new frames; see th...
2019 May 22
1
print.<strorageMode>() not called when autoprinting
Hi Martin,
> On 22 May 2019, at 03:50, Martin Maechler <maechler at stat.math.ethz.ch> wrote:
>
> I'm pretty sure that all teaching and documentation about S and R
> has suggested that print(f) and auto-printing should result in
> the same output _ AFAIR also for S4 objects
I agree with the principle that autoprint and print() should be
equivalent for users. However
2010 Apr 16
4
return of a function
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?...
Nom : non disponible
URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20100416/3049d656/attachment.pl>
2005 Jul 25
5
dragdrop.js: drop from sortable
I have a Sortable that''s working like a charm, but now I would like to
be able to drop objects from that Sortable onto a Droppable that''s not
part of my Sortable.
I just did a small test page where it didn''t work, so my first question
has to be "is this supposed to work?", before I dig too deep into it.
"accept" for the droppable is set to the
2005 Jul 20
3
examples of drag n drop
...selectItem() gets
> called whenever an item is dropped onto the list, with a single argument
> being
> the UL that it''s being dropped on to. Inside the callback, ''this'' refers
> to an
> object that also holds a ref to the UL, and a string called ''lastValue''
> with a
> value of
>
> "secondlist[]=undefined&secondlist[]=undefined&secondlist[]=undefined&secondlist[]=undefined&secondlist[]=undefined&secondlist[]=firstlist2&secondlist[]=undefined"
>
> which I won''t pretend to understan...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...+// Delayed observer, like Form.Element.Observer,
// but waits for delay after last key input
// Ideal for live-search fields
@@ -947,7 +947,7 @@ Form.Element.DelayedObserver = Class.create({
this.element = $(element);
this.callback = callback;
this.timer = null;
- this.lastValue = $F(this.element);
+ this.lastValue = $F(this.element);
Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
},
delayedListener: function(event) {
@@ -960,4 +960,4 @@ Form.Element.DelayedObserver = Class.create({
this.timer = null;
t...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply
to this email, as some of the replaced lines are too long, so git
won't let me send the email. However, there is nothing wrong with
that patch, and it should be applied in the sequence listed below.
Note also that I assume this will be tested on a clean f11 install, rather
than an upgrade of an existing ovirt server