Displaying 20 results from an estimated 23 matches for "klingeling".
2010 Jan 19
4
Determine security updates
Hi,
is there a way / software to find out which security patches my
different CentOS systems are missing? Maybe with the according
CESA announcement displayed?
TIA,
Frank.
2005 Aug 07
8
Ajax forms and redirects
Here is an example that seems perfect for Ajax that I have not seen
implemented nor can figure out how to do it. I am hoping someone can
give me some pointers.
On the sign-up page, I would like to do my validations (password
length, username uniqueness,etc ) Ajax-style. But if all validates,
then redirect to the success page. The combining of redirection to a
new page with Ajax is throwing me.
2005 Aug 10
3
Limit to the number of draggables?
I''m wondering if there''s a max number of draggables. I have a
situation where there are something like 60-80 draggable items and
they work fine on the test server with only a handful of items, but in
production with the full load they no longer work. It''s possible
there''s something else different -- somehting with style sheets or
something, but I wanted to see
2006 Apr 24
5
merging one array into another
Is there no better way to merge one array into another than iterating over the
array you wish to append with each() and push()ing the elements on to the
other array?
Here''s what I mean:
var arr1 = [1, 2, 3, 4, 5];
var arr2 = [''a'', ''b'', ''c''];
$A(arr2).each(function(el) { arr1.push(el) });
Is there no better way to do it than this?
2005 Aug 22
7
Drag-N-Drop Event Sinking With Remote Call
All,
I''m new to Ruby so please excuse me if this issue has been addressed. My question pertains to performing image drag-n-drop event sinkings that fire off remote asynchronous server calls. Has anyone gotten this to work? If so, can you point me in a direction to obtain some sample code/on-line resources. Much Thanks
Chris Alexander
Senior Software Engineer
Lexicon Pharmaceuticals,
2009 Sep 29
6
Dualboot CentOS and Windows
Hi,
I have to install CentOS on a spare partition of a laptop with
Windows pre installed. Is there anything I have to watch out for?
Couldn't find anything in the wiki or does the installer handle this
well without me doing some magic, or so?
TIA,
Frank.
2005 Aug 15
6
Possible to scroll window when user drags a draggable?
It doesn''t seem to be possible, but perhaps somebody knows a trick. I
have some lists that get too long and users can''t drag from list 10,
for example, to list 1. Is there a way to get the browser window to
scroll as they drag the item up?
Thanks!
Tom
2005 Jul 25
8
My try on nested sortables
Hello,
please take a look at http://test.reasonmaker.com/sort/ where I made
some hacks to allow for nested sortables. I need a hierarchical,
sortable list, so I hacked away.
It generally works quite nicely, but:
( - The code needs my debug stuff and failed attempts removed )
- The code needs to be adapted to also work with vertical sortables.
It probably breaks vertical sortables.
2006 Apr 15
11
evalScripts in IE
My Ajax.Updater is set for evalScripts and it receives this:
<script language="JavaScript">complete();</script>
It works in FF but not IE. Is the above code the proper way to return
scripts?
Thanks!
2006 Nov 05
4
Why Struts2 use dojo instead of Scriptaculous?
Hi,
I''m using prototype/Scriptaculous in my open source project JSControlsTags
http://jscontrolstags.sourceforge.net/
I''m Struts user and in the new version Struts2, the framework integrate AJAX
with dojo
and not with Prototype/Scriptaculous. I asked in the Struts forum, why
Struts2 integrate
by default dojo and not scriptaculous.
Here Struts answer :
------------------------
2006 Feb 17
2
Sorting Multiple Arrays
Hey Cats,
I''m having a problem. I''m working with an object that contains a bunch
of arrays:
var myObject = {
"data": [
{"line": [1,"aoo","far"]},
{"line": [2,"boo","ear"]},
{"line": [3,"coo","dar"]},
{"line":
2006 Feb 27
3
bindAsEventListener with parameters
I would like to share a modification to bindAsEventListener() that
might be useful to some of you. It makes it possible to do
function show(event, number) {
alert(Event.element(event).id + " = " + number);
}
Event.observe("el1", "click", show.bindAsEventListener(this, 5);
Event.observe("el2", "click", show.bindAsEventListener(this, 10);
That
2005 Aug 02
3
IE 6 SP1 crashes on pages with Scriptaculous
Hi everyone, just joined the list (through the link on
scriptaculous site).
I''m using Scriptaculous 1.1b1 on a particular web site and I''ve
been told that it consistently crashes IE 6 SP1 (on WinXP) - everytime
my friend tries to access one of the page employing those scripts, IE
dies with:
"Application Error 0x0eefade occured in the application at 0x77e738b2..."
2006 Mar 17
12
Exception in Javascript console in Firefox 1.0.7
Has anyone else seen this?
Error: uncaught exception: [Exception..."Component returned failure
code: 0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS)
[nsiXPCComponents.lookupMethod]" nsresult: "0x80570009
(NS_ERROR_XPC_BAD_CONVERT_JS)" location:"JS frame ::
chrome://global/content/XPCNativeWrapper.js :: anonymous :: line 91"
data: no]
I got that output to the
2005 Aug 31
11
Documentation generator?
I''m looking for a documentation generator for JavaScript code that can
handle the coding style used in prototype.js and script.aculo.us. Any
recommendations for such a tool?
In a similar vein, does it make a noticeable difference in production
when comments are removed and several script files are combined into a
single one?
Michael
--
Michael Schuerig Most people
2006 Apr 27
14
cleanWhitespace and parentNode
Hey cats,
I seem to have ran into a problem in IE trying to use parentNode with
the cleanWhitespace method.
doing something like:
var div = $(''mydiv'');
Element.cleanWhitespace(div);
works really great, but try doing:
var div = $(''mydiv'');
Element.cleanWhitespace(div.parentNode);
or
var div = $(''mydiv'');
div = div.parentNode;
2006 Dec 14
17
Should Event.stopObserving() remove itself from cache?
Just wondering why Event.stopObserving() doesn''t remove the itself from
the Event.obervers array?
Is there a reason for this?
--~--~---------~--~----~------------~-------~--~----~
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
2005 Sep 15
12
Ajax to sockets.
Hello,
I am trying to find a way to implement ajax with a given socket server.
Basically I have a support system that is fully integrated, but I can not
stand the "JAVA" chat client because of the security warning and load time.
So I figured I would look towards ajax especially since it has XML
capabilites.
I have the whitepaper on the socket server, this socket server is on the
same
2006 Feb 18
0
Move element into view
Hello,
I am in fly-by mode as I am still more than busy, so I just dumb this
one out for anyone interested. Adapt it for your needs if you like it.
This effect is similar to ScrollTo, but scrolls the viewport
vertically the minimal amount necessary to bring the element into
view.
Usage: new Effect.ScrollToFullView(element, {duration: 0.6, offset: 10});
Offset is the distance in pixel to the
2005 Aug 08
0
Effects: User action in callbacks in addition to the defined one.
Hello,
there is one problem with the afterFinish etc. callbacks. The
predefined ones in effects,js do some clean-up like in BlindDown, so I
do want them to run. But I also want to run some custom things
afterFinish.
There is no way to run the predefined action in addition to my code.
IMHO, there should be systemAfterFinish for the default stuff and
afterFinish for the user''s stuff,