Dynamic data denotes information that is asynchronously changed as further updates to the information become available.
Questions tagged [dynamic-data]
984 questions
15
votes
6 answers
Dynamic background-image on body (ASP.NET)
I have a situation where I have ~10-20 different background images in a folder. When my site loads I need to choose a specific one of these images based upon some values from the database.
I thought about using runat=server on the body tag, and then…

Lars Holdgaard
- 9,496
- 26
- 102
- 182
15
votes
4 answers
Is there a way to let cURL wait until the page's dynamic updates are done?
I'm fetching pages with cURL in PHP. Everything works fine, but I'm fetching some parts of the page that are calculated with JavaScript a fraction after the page is loaded. cURL already send the page's source back to my PHP script before the…
user1467267
14
votes
1 answer
Using ASP.NET Dynamic Data / LINQ to SQL, how do you have two table fields have a relationship to the same foreign key?
I am using ASP.NET Dynamic Data for a project and I have a table that has two seperate fields that link to the same foreign key in a different table.
This relationship works fine in SQL Server.
However, in the LINQ to SQL model in the ASP.NET…

Matt Mitchell
- 40,943
- 35
- 118
- 185
14
votes
2 answers
Hide a column in ASP.NET Dynamic Data
Is there any way to apply an attribute to a model file in ASP.NET Dynamic Data to hide the column?
For instance, I can currently set the display name of a column like this:
[DisplayName("Last name")]
public object Last_name { get; set; }
Is there a…

Matt Mitchell
- 40,943
- 35
- 118
- 185
14
votes
5 answers
asp.net MVC DisplayTemplates and EditorTemplate naming convention
I've got a couple of questions about the naming convention for the DisplayTemplates and EditorTemplates in MVC 2.
If for example I have a customer object with a child list of account how do I:
Create a display template for the list of accounts,…

lancscoder
- 8,658
- 8
- 48
- 68
14
votes
6 answers
Cannot call methods on tooltip prior to initialization
I am using jQuery tooltip for dynamic created row(can be 10 row/more row)
Tooltip is being display properly but close is not being properly.
Error is given below,
Error: cannot call methods on tooltip prior to initialization; attempted to call…

MD. ABDUL Halim
- 712
- 3
- 11
- 32
14
votes
2 answers
QML Loader not shows changes on .qml file
I have main.qml and dynamic.qml files that i want to load dynamic.qml on main.qml using Loader {}.
Content of dynamic.qml file is dynamic and another program may change its content and overwrite it.
So i wrote some C++ code for detecting changes on…

S.M.Mousavi
- 5,013
- 7
- 44
- 59
13
votes
5 answers
HDF5 C++ interface: writing dynamic 2D arrays
I am using the HDF5 C++ API to write 2D array dataset files. The HDF Group has an example to create a HDF5 file from a statically defined array size, which I've modified to suite my needs below. However, I require a dynamic array, where both NX and…

Mike T
- 41,085
- 18
- 152
- 203
13
votes
6 answers
Could not find Control in ControlParameter inside EditItemTemplate
I am working on a Dynamic Data website and I have run into a wall. I have a Details page where the details for each employee can be seen, and then I have a separate page to edit each employee. I did this because I need to use DropDownList boxes for…

Tyler Mortensen
- 451
- 3
- 8
- 19
12
votes
6 answers
How to write Unit Tests for functions that rely on dynamic data?
Lets say you have a website, that uses a function to retrieve data from the database and returns the result to be displayed/parsed/etc...
Since the data that is retrieved from the database is dynamic and could potentially change every second of the…

Jake Wilson
- 88,616
- 93
- 252
- 370
11
votes
1 answer
How to write dynamic loader for bare-metal arm-application
I'm working on a project based on arm9 processor. We use only bare-metal without any operating system, so unfortunately we have no support for shared libraries / dynamic loader yet.
I would like to be able to have libraries loaded for example from…

Honza
- 1,734
- 3
- 16
- 22
10
votes
9 answers
How do I name variables dynamically in C#?
Is there a way to dynamically name variables?
What I need to do is take a list of variable names from an input file and create variables with those names. Is this possible?
Something like:
Variable = new…

Brandon
- 779
- 5
- 9
- 28
10
votes
3 answers
How to catch that map panning and zoom are really finished?
I am trying to write an application that will dynamically load data to map while user pans or zooms it.
I need to track when the map is finished to change its view state (stops panning or zooming) and then load a new portion of data for creating…

Dmitriy Rybakov
- 390
- 2
- 12
9
votes
2 answers
Pivots with dynamic columns in SQL Server
I am working on an SQL Query using pvots with dynamic columns in SQL Server (T-sql).
Rather than submitting my lengthy query, I’m illustrating my problem with a simplified model.
I create 2 tables: Table1 and Table2 and populate them with a few…

Leon Lai
- 107
- 3
- 3
- 8
9
votes
2 answers
How to make the text bold of TextBlock in Silverlight?
I am developing window phone 7 application in C#. I am new to the window phone 7 application. I am also new to the silverlight. I want to generate the bold text of Texblock dynamically. I want to generate the bold text only for some part of the…

Shailesh Jaiswal
- 3,606
- 13
- 73
- 124