Dynamic is a widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.
5
votes
0answers
286 views
django-mutant creating models in django-admin
I started experimenting with django-mutant 0.0.2 (on django 1.4.2), but due to the lack of documentation I got almost nowhere. The way I understood by the project description I could use it to create ...
4
votes
0answers
120 views
List<T> versus pivoting in the database for databinding to grid
Introduction and tl;dr
In my example i have teachers, students and courses. I would like to have an overview which course is teached by whom in which rooms and all the students in this course.
You ...
4
votes
0answers
139 views
Use layout editor effectively on layouts with non-static fragments
With all the Android development tools greatness, especially as of version 21, the graphical layout editor is a powerful tool to have visual control over a layout with fragments for every ...
3
votes
0answers
487 views
Duplicate id when dynamically adding new component to JSF component tree
Using JSF 2.1, Mojarra 2.1.3, Glassfish 3.1.1, and PrimeFaces 3.3.1
I'm trying to handle processing field level security in JSF, on the preRenderView event, and having issues when needing to add a ...
3
votes
0answers
113 views
Binding to ExpandoObject. PropertyChanged not working
In my Windows Store app I have a list populated with ExpandoObjects. Data binding works fine for the initial values, but not for an image property I set asyncronously after a file has been downloaded: ...
3
votes
0answers
95 views
wicket create a dynamic return class from getHomePage
I am building a web application using Wicket 1.5. I need to decide if the user that is currently logged in is an admin or a regular user and display different page for each of them.
My code:
public ...
3
votes
0answers
301 views
Binder vs DynamicMetaObject & DynamicMetaObject caching
Where should dynamic binding logic be placed when developing new language with DLR?
As far as I know, there are two possible places to implement late binding. One is in binder and the other is in ...
3
votes
0answers
431 views
How to specify LD_LIBRARY_PATH (or PATH) for each project in Netbeans?
In order to load .DLLs (under Windows) or .SOs (under Linux) we must use the environment variables PATH (Windows) or LD_LIBRARY_PATH (Linux).
The only way we could find to properly use DLLs and SOs ...
2
votes
0answers
54 views
How do I create a dynamic tree in c# that adds up parents to respective children then recusively goes back through?
I want to be able to go through a loop with if statements that will store a set of data. After the first loop gets its values I want to make a loop that goes through the list of values just created. ...
2
votes
0answers
16 views
Using 'Ajax updated' dataset with crossfilter
I have a really large dataset (about 500 000 records...) about the CO2 emission on London that I want to display with maps and charts using crossfilter.
For reasons of performance, I want to do ...
2
votes
0answers
45 views
Create Progress Bar in Liferay
I am looking to create a progress bar in Liferay, hopefully inside the Dynamic List Display plugin but not necessarily. The data for the progress bar will be coming from the List though.
Any ...
2
votes
0answers
119 views
X,Y Scatter Plot with Animation
I'm looking for a way to graph multiple point within an (X,Y) plane, and have them appear (then disappear) one at a time. I have a total of about 400 (x,y) points, which are position tracking ...
2
votes
0answers
79 views
IEnumreable dynamic and lambda
I would like to use a lambda expression on a IEnumerable<dynamic> type, howerver im getting the following error on attributes and coordinates where im using a new lambda expression:
Cannot use ...
2
votes
0answers
55 views
Android zooming on dynamically changing layers
I have the base image of a map and I want to be able to add markers to this map. The markers are controlled by a set of buttons at the bottom of the screen and need to be able to display and hide ...
2
votes
0answers
40 views
Getting useful debugging info from dynamic types
I'm working on a codebase that makes heavy use of dynamic types and it's getting increasingly difficult to find out exactly what is being created and passed around. Even when debugging and examining ...
2
votes
0answers
52 views
Retrieve value of a map using a dynamic key in XSLT
I am forming an xsl where I am forming a map with keys and values.
<java:map>
<entry key="10001">2.1</entry>
<entry key="48201">3.1</entry>
...
2
votes
0answers
82 views
Dynamic creation of views inside relative layout stacked
So I've got a relative layout that contains other relative layouts. The child layouts contain various information that I'm parsing from a JSON object(which has key/values as well as child JSON arrays ...
2
votes
0answers
112 views
Android: Calling an onClick method with dynamically created Buttons
In an activity I can set android:onClick in the XML file to the name of a method in my in my Activity object. I want to read a table in my sqlite database, create buttons, and set the onClick to ...
2
votes
0answers
51 views
How to access dynamic generated HTML from a Firefox extension?
I want to access dynamic generated HTML code from my FF extension (XUL).
for example, I have created a toolbar button using XUL, then when I click on this toolbar button I need a javascript code to ...
2
votes
0answers
373 views
JQuery mobile -Edit Listview and count bubbles with Popup
I wanna make List which is there is Count Bubbles in it,
but the count bubbles is Dynamic,
So I mean when the list is clicked, the popup will be shown and asking The value, if we input the value and ...
2
votes
0answers
167 views
PHP Copy Dynamically created TIFF image from remote server
I've written a script that searches through exiting legal case dockets for things like "motion to intervene" and "motion to compel". If the regular expression returns true, then it looks to see if ...
2
votes
0answers
162 views
Custom UITableViewCell with different row height and a drawRect
I have a subclassed UITableViewCell and in that class I have a drawRect method that draws a frame for each cell. Each cell have a different size (like in Twitter App) and for some reason this is ...
2
votes
0answers
127 views
Dynamic Programming. What would be the recurrence relation for this
There is a frog who can make jumps of length 3,5,7. There are stones in a river at distances a1, a2… an. The other end of the stream is n distance away. Can the frog cross the stream. What if the frog ...
2
votes
0answers
274 views
How to make a NSTableView with dynamic number of columns and binding in Cocoa /Xcode?
Sorry, I know this is a bit complicated question .
Life is easy when I want to make a NSTableview object on screen with fixed number of columns. I just make a data binding to each column and simply ...
2
votes
0answers
330 views
Dynamic Add Buttons in LinearLayout, Button click event Issue
I've developed one Android application which uses a HorizontalScrollView, and the HorizontalScrollView has one child as a LinearLayout.
Now I want to add buttons on LinearLayout at Runtime means ...
2
votes
0answers
394 views
Dynamic Fields ModelForms Django
I am trying to figure out how to dynamically change a ModelForm field based on the input from a previous field.
For example, if I have these kinds of models:
class Phone(models.Model):
name = ...
2
votes
0answers
105 views
Using Codesite with Record Types
In Delphi XE, I would like to use codesite to generate information regarding a record type. I know it is possible to force records to emit RTTI, but I am wondering if there is a way to inturn use ...
2
votes
0answers
296 views
How to query, by data range, a composite column in Cassandra with TimeUUID as the first component?
1) Inserting a column
DynamicComposite dc = new DynamicComposite();
dc.add(0,TimeUUIDUtils.getUniqueTimeUUIDinMillis());
2) Trying to query the column between given time range using a SliceQuery
...
2
votes
0answers
173 views
Can I dynamically create user controls using constructors?
I have a user control that will dynamically add other user controls to it, depending on user preferences. I'm having problems adding the controls with the overloaded LoadControl method.
I tried ...
2
votes
0answers
133 views
ClassCastException while dynamically loading a class in Android
I have a thread that loads different classes for the resources it needs depending on the specific implementation of the system. My implementation is on Android and I have a class that returns the ...
2
votes
0answers
1k views
Dynamic Depending Lists in VBA
I have found that code (on: http://www.siddharthrout.com/2011/07/29/excel-data-validationcreate-dynamic-dependent-lists-vba/) really useful:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i ...
2
votes
0answers
394 views
ASP.NET Dynamic Control Generation for Multiple Types of Controls
I want to create dynamic fields. I googled couple of examples and got them working, however the problem in all of those examples is that they are dealing with one type of Control, in most cases its ...
2
votes
0answers
310 views
MVC 2 App - Setting Dynamic Master Page
I want to be able to set a master page depending on the URL at the time in an MVC 2 application.
I've inserted C# code in my Views and I've gotten this far -
<script language="C#" ...
2
votes
0answers
274 views
Application of wget to “Save As Complete Web Page”
Is there a way to wget-ing a web page and obtaining the same exact result (that is a .htm file) as with the browser command "Save As Complete Web Page" (Chrome or Firefox)?
I was not able to find any ...
2
votes
0answers
501 views
Text entered in WPF DatagridTextboxColumn and value selected in DatagridComboboxColumn are not displayed when focus is lost
My question might seem repeatetive as there are similar questions in StackOverflow like,
How to retain value in DataGridComboBoxColumn of WPF's DataGrid
Creating WPF DataGrid dynamically with ...
2
votes
0answers
471 views
Visual Studio dynamic javascript reference intellisense from localhost
It appears that Visual Studio 2010 will skip references that are not formatted http://x.x... I'm trying to use
/// <reference path="http://localhost:12946/js/fancytest" />
to generate ...
2
votes
0answers
538 views
How to Bind Images in Gridview all cells dynamically & get values from cell
I am developing movie theater seat booking website like http://in.bookmyshow.com/, for that i have place image as Seats in asp:gridview(all cells), for selection of seat click on Image(cell) at that ...
2
votes
0answers
343 views
Rails dynamic drop-down not pre-populated in edit form
I have a dynamic drop-down in a user form that contains cities based on the selected state. The form works perfectly when creating the record, but when editing the user, only the state is populated ...
2
votes
0answers
260 views
How to use android custom component dynamic attr
i'm in a problem
now i made a custom component, piechart and in the GraphicalView.class, i set this in this class
Value=attrs.getAttributeIntValue(null, "GO", 80);
so now, i can add a component by ...
2
votes
0answers
184 views
Why does CreateInstanceFromAndUnwrap not work in a web container?
Hi I have code that looks like the following:
public static I Load<I>(string appDomainName, string fqDllName, string classType) where I : class
{
AppDomainSetup appDomainSetup = new ...
2
votes
0answers
178 views
Dynamically constructed wizard in Asp MVC 3, based on rules
I have an application in which the user select a type of registration. Depending on the type of registration chosen different type of wizards applies.
Eg:
user chooses r1 type:
page 1 will ...
2
votes
0answers
2k views
JSF : dynamically loaded page commandButton not working
I have a page that contains a PrimeFaces accordion panel, in each panel is a PrimeFaces datatable. Below the datatable is a button "Add study" for example and when this button is click I want to ...
2
votes
0answers
637 views
can't populate listview based on selected spinner item. getting Window already focused, ignoring focus gain of
I have a spinner that displays a list of classes a user is enrolled in. After the user selects a class, they press a "search" button which pulls up a list of studygroups they can join for that class.
...
2
votes
0answers
344 views
java class creation dynamically and make it accessible across the network different jvms i.e. serializable
I have a requirement of creating java classes dynamically and make it accessible different jvms across the network. I tried to use reflection and javassist tool,but nothing worked. Let me explain the ...
1
vote
0answers
37 views
JQuery Draggable DIV in Draggable LI move to new DIV or create new DIV
I'm new to js and jquery, and it's hard for me to code this task:
I have a big DIV (.pins_dragger) element, it is fixed on layout. DIV.pins_dragger contains some other DIVS (.group) which are ...
1
vote
0answers
32 views
dynamically generated open graph tags are missing parameters from URL
I'm generating open graph meta tags dynamically from url paramaters. When I display the page, everything looks fine and if I check the page source, all my meta tags are generated perfectly. Here is ...
1
vote
0answers
48 views
How to get a property in a dynamically created Object in a dynamically created Array
Basically, I have this dynamically created object being sent back from a PHP script that I put into an array. I store where it's located in the array in the tools the user uses to select what to view ...
1
vote
0answers
25 views
How to get the account name in dynamics cm using JS?
hi i want to get the name of the account in dynamics crm 2011, created on a specific date.
for example, if an account is created on 4/3/2013 and the user also gives the same date then how can i get ...
1
vote
0answers
77 views
using together static and dynamic shared memory in a CUDA kernel
I am writing a kernel which makes massive use of shared memory.
I need both dynamic and static shared memory arrays.
This is an example of what I do:
__global__ void kernel() {
extern __shared__ ...
1
vote
0answers
29 views
MVC3 Razor dynamic form creation and validation
I have setup a page on my website where admin staff can create a competition and add any number of fields for certains types and they can be set to required or not to this competition.
When the ...

