Questions tagged [loaded]

138 questions
0
votes
0 answers

as3 air File.File.applicationDirectory.resolvePath - check when loaded

I am trying to load folder names into an array for later use. It works fine on my desktop but when I test it on a mobile device (both Android and iPhone) and it is calling another function - displayFlags(); - before I get the folder names into an…
Papa De Beau
  • 3,416
  • 17
  • 75
  • 132
0
votes
1 answer

Remove class when an image is loaded

I have an image element looking like this: When the data-src has finished…
Cheezen
  • 179
  • 1
  • 2
  • 12
0
votes
0 answers

WPF Datagrid dgDataGrid_Loaded event triggers more than once

I have a wpf dadatagrid and every time the contents being loaded the dgDataGrid_Loaded event triggers twice. I am not sure whether this is WPF bug or I have missed something!? here is my Xaml code:
amir moradifard
  • 323
  • 1
  • 8
  • 23
0
votes
2 answers

[WPF]ItemsControl not completely loaded @Loaded event

I have a probably simple problem, that I just can't seem to figure out: I've made an ItemsControl which has its datacontext set and shows the data as pairs of Checkboxes and TextBlocks:
Kaare
0
votes
2 answers

jquery access content loaded via ajax call

i'm trying to write a jquery plugin that when i click on a image to pop an alert message. Those images are loaded via load() method. Is there possible to load the plugin on document ready and the plugin to have acces to the loaded content? i don't…
kmunky
  • 14,323
  • 17
  • 51
  • 63
0
votes
0 answers

How can I check if google map is already loaded

I am working in a project to provide a map to mobile phone. For now I am trying on a iPhone. It works fine, and when I load my first page I can see a map with my position, and the market is refreshed each 10 sec and move to my next position. Some…
pierrot10
  • 109
  • 3
  • 11
0
votes
1 answer

javascript has 3rd party object loaded

Possible Duplicate: how to check the script element load event accross browser without jquery I'm writing a page to generate graphs for someone. I'm using the Google Charts API. I want to load the API dynamically. I'm having problems with the…
0
votes
1 answer

WPF - How to wait for all views to be loaded

I have several views in MVVM design. I need to do some logic after ALL views (and ViewModels) are loaded. I can register to Loaded event for each view, but I need to know when ALL the views/ViewModels are loaded. Is WPF support that ?
EitanG
  • 211
  • 3
  • 18
0
votes
1 answer

jQuery - Check images have loaded

I have a demo here to illustrate my question. http://www.ttmt.org.uk/forum/gallery2/ http://jsfiddle.net/ttmt/tmyqj/11/ I've been trying to do this all day, I don't know If I've got completely the wrong idea. I have a list of images that are floated…
ttmt
  • 5,232
  • 17
  • 88
  • 140
0
votes
1 answer

How can I check images loaded after I have used $.GET?

Okay so I have some code $.get('results1.html', function(data) { $('#search-results').html(data); }).complete(function() { BlockStuffNow(); }); BlockStuffNow(); is a function that operates on the images that have been loaded…
0
votes
0 answers

determine AJAX.A4J has finished all requests in queue

Good day, I need to check if a website has loaded completed, including AJAX. For all other frameworks I found a way to verify it, except for A4J.AJAX. // DOM document.readyState=='complete'; // jQuery jQuery.active==0; //…
MushyPeas
  • 1,950
  • 2
  • 24
  • 41
0
votes
3 answers

How to call jquery lightBox from loaded content

I'm trying to use jquery lightbox to display photos that are loaded into a page using load(). My code is: $('#content').on('click', 'a.thumb_link', function(){ $('a.thumb_link').lightBox(); return false; }); This works only if I…
Gdev
  • 137
  • 1
  • 9
0
votes
2 answers

How can I detect if an image object is being displayed?

When I load an image object in the DOM for large images this will freeze the display for a moment on the iPad. For testing purpose, let a GIF animation loader spin and add a large image to the DOM, when the image is loaded and added to the DOM you…
Mark
  • 12,916
  • 16
  • 70
  • 94
0
votes
2 answers

ListboxItem loaded multiple times

I have a trigger on a storyboard for my listboxitem where the trigger is 'Loaded'. It appears that every time the listbox scrolls the item gets the 'Loaded' event. I really only want the storyboard to run once, when the listboxitem gets displayed. I…
user121521
-1
votes
3 answers

Dynamically loading image into div from client side - jQuery

I tried loading an web image, it works. But I want to load a client-side image. $("#lol").live("click", function() { $(".main").html(''); })
1 2 3
9
10