Displaying 20 results from an estimated 5000 matches similar to: "IE and the activeX security warning"
2005 Sep 27
3
Too much recursion
Hey Guys,
I''ve just encountered this error in Firefox will I pulled the latest
scriptaculous rc into project. Sadly, I don''t have a linkable page for
you to look over at the point. My question is what is this error
exactly? My code before this never got it but now it does. My few
searches suggest it''s the browsers way of keeping infinite loops from
happening
2005 Aug 18
8
Extending a js class
It''s been a few days since I posted my last two emails (of which, no one
replied to) so I''ve gone ahead and coded a working slider class as well
as a ''resizeable'' class that allows a user to drag and resize the
element. I also linked these two together as I want to have slider
behavior that can resize the resizeable element. The end result is both
the
2005 Dec 14
2
RE: Form.serialize and Ajax.Request->fileserialization and encoding
I''d bet money that they use a hidden iframe. Gmail already uses that to
avoid breaking the back button, from what I''ve read. It''s impossible to
send multipart form data through XMLHttpRequest, or so everything I read
says and my own personal attempts confirm. There is an IE ActiveX
plugin that will let you send files in a similar fashion, but it''s IE
only. I
2005 Sep 30
5
Converting text into a javascript array
Hey Guys,
I know this isn''t specific to scriptaculous libraries but it''s something
that I''m exploring as I use the ajax functions in prototype. My
application server is not rails but java and I was thinking of returning
a javascript array in the ajax response. When I get back my response is
it, of course, text and I''m not sure how best to convert it into
2005 Sep 21
8
Slider controls
Heya!
Thanks to Marty Haught, script.aculo.us (as of changeset 2281) now
sports
a new Control for horizontal and vertical sliders.
See the functional test file (test/functional/slider_test.html) for
information
on how to use it.
Basically, you do:
<div id="track1" style="width:200px;background-color:#aaa;height:5px;">
<div id="handle1"
2005 Jul 06
16
Autocompletion not working in Konqueror
I''ve just had a look again at the autocompletion demo that Thomas put up
at
http://script.aculo.us/demos/ajax/autocompleter
Unfortunately, in Konqueror (3.4.1) it doesn''t work at all. Not even an
error is triggered. It does work nicely in Firefox. How about Safari?
I don''t have the time right now to track this down systematically (maybe
latter), but just from
2005 Aug 05
4
Dev Tools
What tools does everyone use to develop? Are there any tools to see what is
going to and coming back from and Ajax call that can be plugged into
firefox?
--
Eric Fleming
efleming@gmail.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20050805/55f7e02e/attachment.html
2005 Aug 02
3
Scriptaculous: Sortable (dragdrop.js) onUpdate
Hi all,
In the following code, it doesn''t look like the onUpdate() event is firing.
Am I doing something wrong?
<ul id="testSort">
<li id="item1">item 1</li>
<li id="item2">item 2</li>
<li id="item3">item 3</li>
<li id="item4">item 4</li>
<li id="item5">item
2005 Sep 24
5
Load latency, file count, and a proposal
Hey All,
So now that we''re up to 7 files, and hopefully more
coming as the project grows, minimizing load latency
seems much more important.
Maybe it''s time to consider creating a single file
distribution, much like what prototype.js is (a
concatination of 6 or so other files)?
re: packaging suggestions
*) scriptaculous_only.js
- all of the scriptaculous components w/o
2006 Apr 18
4
Security considerations with displaying uploaded HTML
I have an application where I am allowing users to upload (or refer the
app. to) arbritrary HTML that I am (currently) displaying in an IFRAME
on a page. The users will be authenticated so it''s not open to the
entire universe.
I was always uneasy with this, but after reading the security chapter of
AWDWR, I am even more concerned.
What kinds of applications do people have out there
2008 Jan 01
2
Ajax.Updater from within an IFrame
Hello together.
I''m trying to call an Ajax.Updater from within an IFrame to update an
element in the parent window.
It is working, but I receive an error from Firefox when I do so.
What I want to do is to upload a file, and then after the file has
completed uploading, automatically reload a section of the page with
information about the file to post-process it.
However, AJAX
2005 Sep 21
9
Ajax.Updater
Hi all,
I was wondering if one could pull a completely separate web site into a
div, e.g.
<a href="#" onclick="new Ajax.Updater(''artifact'',
''http://www.vivisimo.com/'', {asynchronous:true, evalScripts:true,
onLoading:function(request){Toggle.display(''message2body'')}}); return
false;">»</a>
it fails
2005 Aug 21
3
Data binding
Hi,
Is there any interest in data binding functions? I''ve got several
functions that enable you to populate tables, select lists and forms
etc using js arrays and objects.
It could be useful to anyone using Ajax, computed javascript or any
other mechanism to read data from a server separately from the HTML.
Any interest?
Joe.
2005 Sep 15
4
Scrolling Tables/Divs?
Is anyone working on a scrolling table or div such as the openrico
livegrid demo? I''m looking to develop (much like smashbox''s scrolling
images) a collection of thumbnails that you can scroll horizontally.
I''ve got a non-prototype.js example but I wanted to check to see if
anyone was closer than I to this.
BTW, I will be finishing up my slider code shortly and
2005 Sep 13
6
flicker in IE with SlideDown/SlideUp
The flicker I am seeing in IE is really really bad with SlideDown/SlideUp.
The element I am sliding is a div that contains a table. The tables are
stacked on top of each other so that the presentation actually appears as a
single table.
When I SlideDown, the toggled element flashed into view then disappears
before sliding down. On SlideUp it slides up then flashes into view for a
split
2005 Aug 17
5
asynchronous Ajax.Updater
I had one point in my project where I needed a synchronous Ajax call; in
other words, I wanted the Ajax.Updater call to not return until the content
of my page had been updated. However, I found that if you call
Ajax.Updaterwith the {asynchronous: false} option, the onComplete()
function would never
be called and your content would not be updated. Was this the intended
behavior? I added the
2006 Jun 27
14
iframe ... does it have an innerHTML ?
If I dynamically create a hidden iframe, how could I add a document in a
string to that element?
e.g.,
var sDocument = ''<html><head></head><body>Hello world.</body></html>'';
I''ve tried several variations of appendChild, innerHTML, document.innerHTML,
createTextNode.
Argh!
_______________________________________________
2006 May 09
8
Dynamically printing a page
Does anyone know of a cross browser solution to print a page/url after a
user clicks a button?
Currently, I''m using a "hidden" iframe to do my bidding. But from my
experience, IE requires that the iframe''s src attribute be set initially to
the url, in order for the page to open properly. I wasn''t able to add the
iframe to the page dynamically, either.
So
2005 Nov 15
1
Speex play back
I am a Java developer. I represent a small company writing a audio
archiving application in Java using SPEEX files on Windows 2000/XP. We
have been using the software found at the main SPEEX site and looking
for API's we can use there. We are looking for a Java based SPEEX API
that allows us the following playback functionality:
- Open the SPEEX file from local file system or via a http
2008 Jun 03
7
Iframe shenanigans
Here''s my problem. Unfortunately I have the need to load up fully
qualified html documents
into my page. (think tens of thousands of mini sites). I also have the
need to be as handicap accessible as possible. (So ajax is essentially
out, screen readers aren''t up to snuff yet). Thus I''m using an iframe.
The unfortunate part
is that I have navigation menus that appear over