Questions tagged [loaded]
139 questions
2
votes
1 answer
vue function does not run after mounted()
A memory-game I am creating, I would like to start immediately after the page is loaded.
To start I need to createDeck() and showCards()
I tried several things in the export default {} like:
created(){
this.createDeck(),
…

M.Koops
- 145
- 1
- 15
2
votes
1 answer
DataContextChanged of a Tab in a TabControl is raised too early
I have a TabControl binding to some items. Underneath it is a Button where I can add items dynamically. On adding an item, the new item should become the active Tab (works fine with TabControl.SelectedItem):

Papa Mufflon
- 17,558
- 5
- 27
- 35
2
votes
2 answers
Java how to pass a loaded class parameter type as a generic argument?
I would like to load a java class dynamically, and then add objects created with this class in an ObservableList for example.
Class> thisClass = Class.forName("Point", true, classLoader);
Object iClass =…

O. Durand
- 169
- 1
- 8
2
votes
2 answers
Javascript function to load a DIV after the entire page is loaded
I want to load the DIV "image" only after the entire page is loaded.
What JS code do I need?
I will call the function with :
$(document).ready(function()
CONTENT

Bryan Willy
- 61
- 1
- 6
2
votes
2 answers
Load anchor tag after page has fully loaded
I have a slideshow plugin called flexslider which is only displayed after the page has fully loaded and all images have been downloaded.
I also have an anchor tag on this page which is being invoked before the page has fully loaded.
This is causing…

masterg174
- 143
- 9
2
votes
3 answers
Detecting when a template was loaded in wpf
I am working with an attached behavior for logging user actions on a ScrollBar.
my code:
class ScrollBarLogBehavior : Behavior
{
protected override void OnAttached()
{
base.OnAttached();
AssociatedObject.Loaded +=…

ShayD
- 920
- 8
- 18
2
votes
0 answers
Loaded event fires before Binding has completed in WPF. How can I prevent this?
I have some XAML that does binding of a model to the control that I am creating. However, when the control's 'Loaded' event fires, the binding hasn't completed, so I end up with a null Model.
Is there some way to guarantee that all Binding will be…

Curtis
- 5,794
- 8
- 50
- 77
2
votes
4 answers
fade in all divs of a page. once the content of the divs is loaded
Sorry, Ill try simplify my question. Basically, when a user goes to a page...all the divs on the page and the content of the div fade in. Once loaded. I was thinking maybe something like:
$(window).load(function(){
$('#div').load(function () {
…

daniel
- 21
- 3
2
votes
1 answer
WPF UserControl.Loaded event does not trigger
In my program, when I hover over (MouseEnter event) a certain UserControl (here I use TransportOrderLineUserControl) a TransportOrderLineDetailView should be shown.
The TransportOrderLineDetailView should be placed at the bottom right of my screen.…

Kjell Derous
- 502
- 1
- 6
- 19
2
votes
1 answer
C# WPF - Waiting for page to load
I have seen several threads on StackOverflow concerning this topic, however none of them seem to provide an answer.
I have a button that, when clicked, opens up an invisible web page, navigates to a URL, enters information into a box, presses a…

user3175176
- 171
- 1
- 2
- 14
2
votes
3 answers
Check if jQuery and jQuery UI was loaded
Hello i need to build a 3rd Party Widgets with JavaScript and php.
This Widgets will need to use in jQuery and jQuery UI and maybe in the future other jQuery Libraries and Plugins.
so when my client put this Widget to his site i need to know if…

pey22
- 137
- 2
- 6
- 13
2
votes
1 answer
Wait for window.onload event using Selenium Webdriver
I need a solution how to wait until the web page is fully loaded. And exactly after that, waiting no longer, I need to perform actions with a web page: get URL of loaded page, check cookie, click elements so on
I use the following code before…

Alex Dykopavlenko
- 41
- 1
- 3
2
votes
2 answers
HTML5 Video using video.js won't play until fully downloaded
I have a strange issue with a html5 video. It's working correctly in all browsers except in Internet Explorer. Internet Explorer 9 is always waiting for the video to be fully downloaded until playback starts. If I open the Video in Firefox, Chrome…

siorpaesas
- 35
- 5
2
votes
2 answers
How know when a winform is loaded by Process.Start?
I'm in a WindowsForm (c# .net 3.5) and on click of a button launch another external application (also .net 3.5) using Process.Start() and understand when it is available after i have launched it.
ProcessStartInfo psInfo = new…

Babba
- 253
- 1
- 5
- 12
1
vote
2 answers
Silverlight: Is there an event that fires on a FrameworkElement before it is rendered?
In our Silverlight 2 project we have created an attached property to perform on-the-fly translation to text properties of various user controls. To achieve this, we hook the Loaded event of the FrameworkElement when the property is set. When the…

X-Cubed
- 1,869
- 15
- 24