Displaying 20 results from an estimated 2000 matches similar to: "switching two nodes"
2005 Dec 23
1
floating layer following the mouse
Hello,
I have added a fade-in/fade-out floating layer to display infos on Ajax
request.
I have used Position to display it on a corner.
Is there a simple way to make this floating layer displayed near the mouse
and make it follow the mouse movments
Tarek
--
Tarek Ziadé | www.afpy.org
Python - why settle for snake oil when you can have the whole snake?
(Mark Jackson)
2005 Dec 13
2
Ajax.Request onComplete
Hello,
I have a small class where i want to use attributes of the instance when an
ajax call returns, so I wrote:
*var* MyClass = Class.create();
MyClass.prototype = {
initialize: *function*(form_id, rendered_id) {
this.form_id = form_id;
*var* edit_form = $(form_id);
*var* rendered_node = $(rendered_id);
*if* (!edit_form || !rendered_node) {
this.enabled = *false*;
2005 Dec 14
1
RE: Form.serialize and Ajax.Request ->fileserialization and encoding
I''ve not looked into how it''s done but adding an attachment in Gmail (UK version) uploads the file without refreshing the window, and http://www.yousendit.com <http://www.yousendit.com/> appears to send a file via some sort of RPC or AJAX. Maybe this could be another starting point for you.
Paul Shannon
Web Applications Developer
Codeweavers Limited
Tel: 0870 443
2005 Dec 14
0
Form.serialize and Ajax.Request -> file serialization and encoding
Hello,
I have related two questions:
1/ I am trying to send a multipart/form-data encoded form through Ajax with
by calling Form.serialize, but it seems that files fields does not
support this very well
Is there any special mode to use ?
2/ some datas in the form are iso-8859-15 text, that get through utf8
encoding in javascript and therefore
get a bit busted. I know how to correct
2006 Jan 20
3
disabling drag''n''drop features on some areas
Hi,
I have implemented the drag and drop feature to move around some divs, but I
have a small side
effect i am trying to clear:
When the draggable div contains links, and if the user grab the div on the
link, the drag is done but
the link is also visited, leading to unwanted issues.
What I''ve tried to do is to look for all ''a'' tags in the draggable elements
in order
2006 Feb 23
25
reloading fragments of pages
Hello,
I have a treeview, that works with scriptaculous in order to load the nodes
dynamically.
I also have in the main part of the page, a table with the list of elements.
The lists of elements can be drag-dropped on the treeview in order to move
them around
(they are also draggable on other parts of the page)
I need though, to refresh the treeview to reflect changes when a folder was
moved
2006 Jan 02
2
mouse position without event
Hello,
Is it possible somehow to get mouse coordinates without using the event
mechanism ?
I need to get the current mouse position to initialize some div position,
but not at page load
Tarek
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2006 Jan 04
4
gmail attached file field magic
Hello,
does someone knows how gmail does file upload when the attached files
are automatically saved in drafts ?
I am trying to do it in Scriptalicious/Prototype but I don''t see how they
get
the file on the system using js...
Tarek
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Jan 11
3
sortables callbacks
i know someone just recently asked about queueing ajax requests, my
question is similar in the regards that i don''t want my application to
send multiple requests. i have 2 sortabbles lists left, and right. when
i move an item from left to the right the onUpdate callback will send 2
ajax requests. one for each sortables. however. i want it to serialize
and send back the results from
2005 Dec 14
1
RE: Form.serialize and Ajax.Request -> fileserialization and encoding
1/ I am trying to send a multipart/form-data encoded form through Ajax
with
by calling Form.serialize, but it seems that files fields does not
support this very well
Is there any special mode to use ?
You cannot send a file through Ajax. You''ll have to submit the form
normally. To mimic Ajax functionality, you could set the target to a
hidden iframe, and on the server side,
2006 Jan 16
2
Behaviour.js and prototype Event.pointerX
is there a way to take advantage of prototypes Event.pointerX when
using Behaviour to manage my events?
somthing like..
var myrules = {
''body'' : function(el){
el.onclick = function(){
alert(Event.pointerX(e));
}
}
};
thanks
______________________________________________________________________
Alex Duffield . Principal . InControl Solutions . http://
2006 Jun 06
1
OT: Cellular boosters
We use Motorola v551's as "extensions" on our Asterisk system with a
homebrew find me/follow me dialplan. It works great except where coverage is
poor then of course the inbound call hits voicemail. This has nothing to do
with Asterisk and everything to do with our cellular provider, but since you
guys are telephony pros I'd like to ask if anyone has had any good or bad
2006 Feb 09
6
inPlaceEditor ISSUES!
I have run into a problem that I have never created before. I am
using the scriptaculous inPlaceEditor
If I hit the cancel button, and rehit the editor it then creates two
textboxes, and if I repeat three input boxes, etc.!
Must be stupid simple, but I AM STUMPED!
DECO
2023 Oct 25
1
Set same TLS Root CA cert on all Samba DC's?
Op 25-10-2023 om 17:13 schreef Alex via samba:
> And will Samba regenerate it's own server certs from that CA, or do I need
> to externally generate & renew them with openssl?
> Does anything else need to be done before or after replacing the certs in
> Samba? This won't break server/domain trust with domain joined workstations?
Anything that server that uses TLS will
2006 Jun 21
11
scriptaculous question
Hello everybody.
I''m wondering if there is away with scriptaculous to update multiple form
fields with data after finishing an autocomplete request.
Heres an example.
Joe BlowSchmoe fills in his name and starts to type in the customer number,
he selects the approprate customer number from autocomplete list, and bam
the address associated with the customer number is populated into the
2019 Mar 14
5
regarding ssl certificates
Excuse dopey question.
I'm not exactly clear about certificates.
Apache2 default install has this snake oil certificate
Can make a new one for apache
Can make one for dovecot
Can make one for ssl
Is there supposed to be the one (self signed ) certificate pair in one
place for the machine that each process hands out ?
Can they be moved to another machine ?
mick
--
Key ID C7D6E24C
2006 Feb 13
3
Insertion.top & tables
I have had trouble making Insertion.top work with tables
I would like to do something like
<table>
<div = "newentry">
<tr><td> First entry</td></tr>
<tr><td> Second entry</td></tr>
</div>
</table>
so that Insertion.top inserts the new row above the first entry. So
far this has not worked. Has anyone else tried
2019 Mar 14
0
regarding ssl certificates
Op 14-03-19 om 11:46 schreef mick crane via dovecot:
> Excuse dopey question.
> I'm not exactly clear about certificates.
> Apache2 default install has this snake oil certificate
> Can make a new one for apache
> Can make one for dovecot
> Can make one for ssl
> Is there supposed to be the one (self signed ) certificate pair in one
> place for the machine that each
2019 Mar 14
0
regarding ssl certificates
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Hi,
So this question means you need to do some more reading about all SSL/TLS
services.
On Thu, 2019-03-14 at 10:46 +0000, mick crane via dovecot wrote:
> Excuse dopey question.
> I'm not exactly clear about certificates.
> Apache2 default install has this snake oil certificate
> Can make a new one for apache
> Can make one for
2019 Mar 14
0
regarding ssl certificates
mick crane wrote:
> Apache2 default install has this snake oil certificate
> Can make a new one for apache
I won't go over some of the excellent points in previous posts,
but I will mention SAN as a third type of certificate you can make.
LetsEncrypt supports this type of certificate.
This is halfway between single CN and wildcard certificate where you can
combine many hostnames (up