The dynamic-loading tag has no wiki summary.
18
votes
3answers
7k views
How do I programmatically compile and instantiate a Java class?
I have the class name stored in a property file. I know that the classes store will implement IDynamicLoad. How do I instantiate the class dynamically?
Right now I have
Properties foo = new ...
3
votes
2answers
2k views
Load content as an element scrolls into view
I have a list of search results in a <div> element with a static height and overflow: auto; in the style. I would like to load only the first x number of search results (e.g. 20), and load ...
14
votes
2answers
882 views
Help with Haskell dynamic plugin load
I'm a Haskell beginner, and I'm trying to use the dynamic loading in the 'plugins' package. I'm kind of lost. Here is a minimal program with two files.
Main.hs:
module Main (main) where
import ...
5
votes
3answers
1k views
Max number of appdomains loaded in one process
Since dynamic assembly loading requires appdomain loading to enable killing the assembly with unloading related appdomain, is there a "max" number appdomains in a process to be loaded? I am thinking ...
9
votes
2answers
5k views
Difference between System.load() and System.loadLibrary in Java
What is the difference between System.load() and System.loadLibrary() in java?
I want to load a library but I don't want to add the path to environment variables.
Will any one of these help ?
2
votes
3answers
2k views
Ajax - limit the loading of a list and then load the rest on scroll
I have a store that shows all products of a category on one page (and this is how the owner likes it so pagination is not an option).
To improve load time on some heavy categories, I'm hoping to ...
3
votes
4answers
782 views
How do I make an Action Script 3 class, used in two SWF files, resolve to the same class when one SWF dynamically loads the other?
Background
I am developing a highly modular application in pure Action Script 3 (we are using Flex 4 SDK to automate our builds, but all our code must be able to compile directly in Flash CS4 ...
2
votes
1answer
233 views
How to handle “panic: the impossible happened” and continue in Haskell
I have the following code that uses the GHC API to load modules and get the type of an expression:
typeObjects :: [String] -> [String] -> IO [Type]
typeObjects modules objects = do
...
1
vote
0answers
305 views
jQuery Mobile does not apply styles after dynamically loading content
Objective: To refresh the content of <div id="nav_content" > after a button click. (content must change after the user has logged in).
Problem:
When the user logs in, the content changes but ...
1
vote
4answers
1k views
Error handling in Dynamic JS loading
I am loading a JS file needed only for one part of my web page, only when the user navigates to that tab on the page.
var scriptFile = document.createElement("script");
...
0
votes
1answer
149 views
Dynamic loading of template files into a div not working in IE8-
Im using the following code to load the html file containing my templates into a div dynamically it is working fine in all the browsers except IE8 and lower
JS Function:
function loadHTML(url, ...
0
votes
2answers
377 views
tiny mce can't be inited when load js dynamically
i am having trouble with tinyMCE, when i put <script type="text/javascript" src="/scripts/tiny_mce/tiny_mce.js"> to <head>, and put init code before the <textarea ...