Questions tagged [dynamic-data]

Dynamic data denotes information that is asynchronously changed as further updates to the information become available.

966 questions
14
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
  • 8,386
  • 20
  • 85
  • 170
13
votes
3 answers

Abstract: Should I choose ASP.Net MVC over Web Forms or

I've been working with web for over 7 yrs and I've upgraded from html->ASP->ASP.Net and now the new flavors of ASP.Net itself. I was to begin with MVC last year but due to deadline and the complexity involved in MVC I couldn't. Now, once again…
Hemant Tank
  • 1,710
  • 2
  • 27
  • 53
13
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
  • 37,997
  • 35
  • 111
  • 181
13
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
  • 37,997
  • 35
  • 111
  • 181
13
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,…
13
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…
13
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
  • 4,279
  • 6
  • 37
  • 50
12
votes
4 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
  • 34,456
  • 15
  • 128
  • 169
12
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
  • 431
  • 3
  • 8
  • 19
11
votes
3 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
10
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,454
  • 2
  • 14
  • 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
  • 769
  • 5
  • 9
  • 27
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
  • 370
  • 2
  • 12
10
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
  • 78,902
  • 83
  • 230
  • 344
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
  • 97
  • 1
  • 3
  • 8
1
2
3
64 65