Dynamic data denotes information that is asynchronously changed as further updates to the information become available.
Questions tagged [dynamic-data]
984 questions
9
votes
3 answers
Dynamic Allocation of Constant memory in CUDA
I'm trying to take advantage of the constant memory, but I'm having a hard time figuring out how to nest arrays. What I have is an array of data that has counts for internal data but those are different for each entry. So based around the…

Ben
- 91
- 1
- 1
- 3
9
votes
6 answers
ASP.NET Scaffolding/Templating CRUD Solutions
I've been looking into ASP.NET Dynamic Data and how it does scaffolding and routing. I've only scratched the surface, but it's looking like I'd have to create a template for each table that I didn't want to display all columns the same way.
My first…

Chad
- 892
- 2
- 11
- 25
9
votes
2 answers
Field template for editing XElement datatype in Asp.Net Dynamic Data
I have an Asp.Net 4.0 Dynamic Data website with a LINQ to SQL data context.
One of the columns in the SQL Server database is NVARCHAR(MAX) and contains an XML fragment. I have mapped this to XElement in the .dbml file. I have added metadata for the…

flup
- 26,937
- 7
- 52
- 74
9
votes
1 answer
The method 'Skip' is only supported for sorted input in LINQ to Entities. The method 'OrderBy' must be called before the method 'Skip'
I am working on a Dynamic data.
after creating a dynamic model and registering in global.asax, like
DefaultModel.RegisterContext(typeof(masterEntities1),new ContextConfiguration() { ScaffoldAllTables = true });
when i run an application, it shows…

Abhishek gupta
- 463
- 3
- 12
- 33
8
votes
1 answer
Dynamic Form Generation in ASP.NET
I would like to dynamically generate a form from a database in ASP.NET, what is the best approach? Are there any built in functionalities I can use?
I will have database tables to represent the panels and their names, then for each panels, it…

Joshscorp
- 1,832
- 4
- 22
- 42
8
votes
2 answers
ASP.NET Dynamic Data Add Additional Filter Criteria to Page
How should I be adding additional search/filter criteria to a Dynamic Data Web Application?
I created a Dynamic Data Web Application using the Northwind database and I am using a custom page for the Employees table (based on the ListDetails.aspx…

Aaron Hoffman
- 6,604
- 8
- 56
- 61
8
votes
3 answers
How to access dataset in current scope generated by a call to a stored procedure in TSQL?
Problem Background
Generating and accessing data of a fixed column layout is easy. You can create local temp tables up-front, and populate them by calling stored procedures.
On the other hand, if you want to generate data with a dynamic column…

Triynko
- 18,766
- 21
- 107
- 173
8
votes
2 answers
ASP.NET Dynamic Data TextSearch Custom Filter Template
I'm trying to implement a custom filter template for all text based searches and running into problems constructing the query. I've been following the instructions posted on this blog but not sure how change the GetQueryable method to perform…

Bart Jedrocha
- 11,450
- 5
- 43
- 53
8
votes
4 answers
Passing auto typed vars to function in D?
This doesn't work in D:
void doSomething(auto a, auto b){
// ...
}
I'm just curious, will this ever work? Or is this just technically impossible? (Or just plain stupid?)
In anyway, can this be accomplished in any other way? I suppose I could…

0scar
- 3,200
- 25
- 28
8
votes
3 answers
Getting the name which is not defined from NameError in python
As you know, if we simply do:
>>> a > 0
Traceback (most recent call last):
File "", line 1, in
a > 0
NameError: name 'a' is not defined
Is there a way of catching the exception/error and extracting from it the value 'a'.
I…

Manuel Araoz
- 15,962
- 24
- 71
- 95
8
votes
2 answers
Dynamic Variable naming in r
structure(list(Metrics = structure(c(1L, 2L, 3L, 4L, 5L, 6L,
1L, 2L, 3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L,
5L, 6L), .Label = c(" LINESCOMM ", " NCNBLOC_FILE ", " RCYCLOMATIC ",
" RISK ", " RMAXLEVEL ", " RNOEXSTAT "),…

Koushik Saha
- 673
- 1
- 10
- 25
8
votes
4 answers
What is .net dynamic data and why would I use it?
What is .net dynamic data and why would I use it?
Paul
8
votes
4 answers
pass form builder in remote_function in rails?
i have select box where on change i need to grab the value and via remote function get some field names from db and then generate those field further down the form depwning on whatoption from the select box is chosen.
The problem is is that the…

richard moss
- 339
- 1
- 8
- 13
8
votes
3 answers
Variable symbol in Params object in rails
I have the following code:
@profile.update_attributes(params[:xxxx_profile])
where xxxx stands for either male or female. Basically the form submit passes either a set of female_profile[foo] or a male_profile[foo] and i want to change it…
Dave
8
votes
2 answers
Django Dynamic Drop-down List from Database
I wanted to develop a Django app and one of the functionalities I'd like to have is dynamic drop-down lists...specifically for vehicle makes and models...selecting a specific make will update the models list with only the models that fall under that…
Stephen