Questions tagged [loaded]

138 questions
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
  • 11,628
  • 5
  • 22
  • 30
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
  • 6
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?
CONTENT
I will call the function with : $(document).ready(function()
Bryan Willy
  • 61
  • 1
  • 6
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
  • 902
  • 7
  • 17
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,250
  • 7
  • 44
  • 70
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
  • 412
  • 1
  • 5
  • 15
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
  • 151
  • 1
  • 2
  • 13
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
  • 127
  • 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…
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
  • 255
  • 1
  • 4
  • 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,821
  • 15
  • 23
1
vote
2 answers

have colorbox working before page finished loading

i have the following piece of code in the page HEAD: as a result,…
samoyed
  • 861
  • 4
  • 13
  • 25
1
vote
2 answers

At what point is a UIElement loaded?

I have the following code:
Harry Will
  • 71
  • 5
1
vote
1 answer

AS3 Loader keeps reloading same swf over and over

I have a flash animation made on the main timeline of the SWF with a couple of layers, some functions and some keyframe labels. For example, i have a movieclip of a star that come across the screen and then triggers a dispatchEvent for the main…
1 2
3
9 10