Tagged Questions
The complete tag has no wiki summary.
4
votes
3answers
3k views
Why is my URLLoader not dispatching when it completes?
I'm using a URLLoader to send a few key/value pairs to a php script, which then turns them into an e-mail, sends it (or not), and then echoes a string with a response.
At first it works fine. The ...
3
votes
2answers
150 views
load content via jquery ajax after php output is complete
I am currently using jquery ajax to POST data to a php file which uses that data to build and output a jquery-based gallery.
the "links" that are clicked on to trigger the ajax are:
<li ...
3
votes
1answer
108 views
Are there useful uses of readyState different from “4” (complete) in a XHR.onreadystatechange callback?
Have you ever used an XHR object to intercept onreadystatechange with a readyState different from "4" (complete) ?
I'm curious to know if you ever trigger a function with the possible different ...
3
votes
5answers
494 views
how to prevent users' interaction when waiting for ajax's response
The scenario is like: I'm using Jquery to implement some ajax features. For example: when a user click a button "get data", Jquery will call .ajax function to fetch some data from the server. This ...
2
votes
3answers
65 views
How to tell when an image is already in browser cache in IE9?
IE9 is showing false complete property with the following:
$("<img/>",{src:"http://farm2.static.flickr.com/1104/1434841504_edc671e65c.jpg"}).each(function(){console.log(this.complete);});
If ...
2
votes
1answer
116 views
Jquery: wait a function to complete
My problem:
i've got several (tell 10) elements. Hovering every one of them executes some function with animation.
I do want to make so, that if a function (and animation) for one of the elements is ...
2
votes
2answers
781 views
Can a binary search tree be both full and complete?
In preparation for the data structures midterm, the professor gave us last year's test, one question which deals with re-arranging an example tree into a complete binary search tree. I've tried ...
2
votes
4answers
7k views
jQuery loading images with complete callback
I saw a comment on Ben Nadel's blog where Stephen Rushing posted a loader, but I can't figure out how I can pass the selectors and parameter..
I think I also need a completeCallback & ...
2
votes
2answers
1k views
iphone uiwebview download complete page with CSS and Images
in my app there's a uiwebview that loads a url..
i use the following line to save the HTML of the page loaded locally to be able to view it offline.
NSString* html=[webView ...
2
votes
1answer
7k views
How to call jquery ajaxStart + ajaxComplete
I have a load function and would like for the code to write some html into a div while it loads, and when it completes, to display the page. I saw some little writeups on the ajaxStart and ...
1
vote
1answer
206 views
I need to add my Voice Search app to “Complete action using” in Android
I can't seem to be able to find any example of how to add my own program (voice control) to a “Complete action using” list, on search button press.
Right now, when you press the search button on your ...
1
vote
1answer
94 views
full calendar- how to strike off and display completed tasks
With the full calendar plugin , Is there any way to strike off completed tasks (atleast using tag). I am taking the tasks out of my database and the results is passed to json_encode(). Could you ...
1
vote
3answers
109 views
Is there any way to tell when an X-Sendfile download has completed?
In the interest of cleaning up temporary files on the webserver, I'm wondering if there's any way to tell when X-Sendfile downloads complete... maybe in a log somewhere? My understanding currently is ...
1
vote
2answers
454 views
How to check if a binary tree is complete in Java
I am having a lot of trouble with this task. Using the Wikipedia definition for a complete binary tree:
A complete binary tree is a binary tree in which every level, except possibly the last, is ...
1
vote
3answers
641 views
How to detect FTP file transfer completion?
I am writing a script that polls an FTP site for files and downloads them locally as and when available. The files are deposited to the FTP site randomly by various source parties. I need a way to be ...
1
vote
3answers
695 views
jQuery or JavaScript: Determine when image finished loading
How can I detect when an image has finished loading be it from the server or the browser cache?
I want to load various images in the same <img/> tag and detect when the loading of a new images ...
1
vote
2answers
2k views
Android: Add my program to “Complete action using”-list, when clicking a file in filebrowser
When clicking a file in any filebrowser the user usually gets to choose from a list wich app to open with.
How can i add my program to this "Complete action using"-list, so that the file can be opened ...
1
vote
0answers
847 views
scale image in div after load complete with jQuery
I have some thumbnails and when you click on them I have a Modal box with a DIV that I want to scale 50% w/h from the bigger image.
I would like to know if the following method for scaling is valid ...
1
vote
2answers
1k views
Flash AS 3 Loader OnComplete Inside a Loop
I had posted my question as an answer to this question: How to get associated URLRequest from Event.COMPLETE fired by URLLoader
Sorry. Here is my question again:
Hi, How can I make your function ...
1
vote
1answer
599 views
wpf do animation until background worker finishes its work
I have an application that do some hard stuff when user clicks a start button and takes a long time. During this I would like to do some animation over a label, for example, changing opacity from 0 to ...
1
vote
3answers
2k views
How do I bypass the “Complete Action Using …”
I have a question related to choosing an application programmatically when shown the dialog "Complete Action Using" in Android.
An example would be as follow:
In my code, I have this statement
...
1
vote
8answers
373 views
Complete a Ruby Array
My application needs to deal with arrays of fixed size. The problem is that sometimes elements are nil but nil is a forbidden value. I think an easy way is to replace nil values with an the closest ...
1
vote
3answers
1k views
how to determine if file has downloaded
I have the following code that allows a user to download a file. I need to know (if possible) if they downloaded the file successfully. Is there any kind of callback that I can tie into to know ...
1
vote
2answers
2k views
Get the response data into the jQuery ajaxComplete function
What i would like to do is send the return data from any ajax call and also have it avaiable in the ajaxComplete function.
So when i have a $.post or $.get or $.getJSON and so on request like this:
...
0
votes
0answers
14 views
Scorlling UITableView
I have a UITableView with many cells more than the amount of visible cells that it can display at one time.
is there any method that I can make the tableView always displaying complete cells?
I ...
0
votes
0answers
11 views
Scorm 2004 multisco no save strange behavior
I create manifest like this:
<organizations default="w2l">
<organization identifier="w2l">
<title>Kurs pisania Beta 1</title>
<item identifier="l0_i" identifierref="l0" ...
0
votes
0answers
21 views
how to handle a parent/child tree to determine when the childnodes are complete
Running mysql(5.5) /linux/ php/python
Got a situation with a test env, where I'm dealing with a number of spawned processes, that might also spawn processes, so I have a "tree" where I'm looking to ...
0
votes
1answer
69 views
Why am I getting a false only in IE9 for image complete property?
I've seen this pattern used quite a bit, but it seems IE9 doesn't like it. Here is a rough idea of what my function does:
function(path){
...
0
votes
2answers
69 views
Run a function on complete of div fade out using mootools
I am new to mootools and use jQuery normally.
In jQuery i know I make a function run after the effect has been completed like so.
$('#id').fadeOut(500, function(){ // Run function on complete. });
...
0
votes
1answer
43 views
Android RotationAnimation Complete
I am trying to use the RotationAnimation to move an ImageButton. I have extended ImageButton to override onAnimationEnd to avoid the screen flicker at the end of the animation, and would like to ...
0
votes
2answers
97 views
How to get complete html content using WatiN properties
I am using WatiN tool in my asp.net web application. I want complete html content of the IE which I had launched. IE class in WatiN provides a property called "Html" this returns only the body content ...
0
votes
2answers
87 views
auto complete tags on Notepad++
I wonder if there is any plugin for notepad++ to autoclose a tag with the correct closed one. I mean, if I type I'd like that the correct appears automatically.
Cheers.
0
votes
2answers
54 views
JQuery-Auto complete
I want to implement the Auto complete on my search. I am using jQuery. I don't want to use the "JQueryUI" since their java script files are bulky(about 325k). I found out that their are some plug-in ...
0
votes
1answer
63 views
Complete list of Supported Extensions - Android
Does anyone have this, or is able to point me in the direction of such a list? I'm doing a project on the openings of different types of extensions but only for those that Android is able to support ...
0
votes
0answers
153 views
addEventListener will not work on animation in Titanium
No matter what I try, and I have found several ways to try, I can't get an addEventListener for either "start" or "complete" to fire off. Here is a Class I'm instantiating many times:
// animate ...
0
votes
1answer
63 views
how to call a function after an ajax page is completely loaded
using jquery, i loaded a
enrollment_forms.php
page into a div called-(container_level2).
when the enrollment_forms.php page that is laoded in this container_level2 ..
i want to call another ...
0
votes
1answer
395 views
A hadoop job complete without map and reduce on a Hadoop Cluster( one namenode ,12 datanode)
description
I wrote a hadoop program and ran it on a single machine ,it worked good.
But it encountered below problems(job didn't start and finished immediately after map start) when I migrated it to ...
0
votes
1answer
57 views
YouTube Default Player Event when playback over
Does the normal YouTube player, and by normal I mean the one you get when you use the embed code (iframe), fire an event when playback is complete that I can catch outside the iframe?
Thank you.
0
votes
1answer
409 views
iOS - How can I tell when NSData dataWithContentsOfFile is done loading my plist? When can I fetch/assign values?
I'm reading a plist into my application, which consists of a root dictionary and a bunch of sub-values consisting of arrays and date objects. Here's my code so far:
NSError *error;
NSString *path ...
0
votes
0answers
53 views
3 factor randomised complete block design
I was hoping someone may know a code for rcb analysis with 3 factors? I am a student new to R and I have searched high and low and can't find anything to match my design.
I have 3 factors A, B, C. C ...
0
votes
2answers
212 views
c# while loop to finish current loop before ending
I have a do while loop in my code and I am having it do about 30 lines of code each time within the loop. When it hits the while statement eg. it continues until ESC is pressed, Im not sure but will ...
0
votes
0answers
105 views
optimality and completeness of algorithms [closed]
So are the following algorithms:
Simulated Annealing
Genetic Algorithm
Recursive Best First Search
SMA*
(1) Optimal?
(2) Complete?
0
votes
1answer
205 views
Adobe Flex / Image Event.COMPLETE does not fire in Release mode
I'm working with Adobe Flex for a couple of months now. But I encountered an issue that I just couldn't solve. I specified the complete event for an component
to set some filters on the bitmap after ...
0
votes
1answer
176 views
How do I automatically complete a php form using C++?
What is a simple way to complete a php form, submit it and get the resulting data ? It doesn't have to be C++ but I know it best, I have the last visual studio and I need a windows executable.
I ...
0
votes
1answer
328 views
How to enable completiion in Coda like Textmate & Notepad++?
Textmate & Notepad++ can complete all words which appeared in the current document, how to enable this in Coda?
e.d. I have typed "some_text" in a document, then when I type "some_" then press ...
0
votes
1answer
639 views
Change Ubercart's checkout complete page for a node
I've just created what I would of liked to be the checkout complete page with out realising that I couldn't find an setting to change the page. Obviously I know my node could be accessed without ...
0
votes
1answer
514 views
PHP get all unclosed HTML tags in string
How can I get all the unclosed tags in a given string, prefferably in the order they should be closed?
Note: consider that there are no errors in the HTML and that it was just cut off after X ...
0
votes
4answers
382 views
C/C++ Determine Whether Files have been completely written
I have a directory (DIR_A) to dump from Server A to Server B which is
expected to take a few weeks. DIR_A has the normal tree
structure i.e. a directory could have subfolders or files, etc
Aim:
As ...
0
votes
1answer
544 views
Android Eliminate Complete Action Using dialog
I have 2 apps and both integrate a package containing an activity. My problem is that when I launch any one app, and when it calls the activity inside the package, it shows me a dialog:
Complete ...
0
votes
1answer
183 views
Checking for NSURL load done
I'm looking for a "did finish, or finish" thing in NSURL -> NSstring initWithContentsOfUrl
i found "URLResourceDidFinishLoading" but this seems to be depreciated
I couldn't find any but maybe I ...