Dynamic data denotes information that is asynchronously changed as further updates to the information become available.
Questions tagged [dynamic-data]
984 questions
6
votes
5 answers
HTML/ASP.NET:
I just wanna ask if there's a possibility to change:
into this:
where I can set any values behind .cs/C# - making it dynamically.…

abramlimpin
- 5,027
- 11
- 58
- 97
6
votes
1 answer
How to send a dynamically generated file in a rails app
I'm trying to serve a dynamically generated files in a rails app, so when the user clicks a specific link, the file is generated and sent to the client using send_data.
The file is not intended to be reused: is a short text file and regenerating…

Ricardo Amores
- 4,597
- 1
- 31
- 45
6
votes
3 answers
When creating a new record, how do I fill some fields with values from the filter?
I'm working on an ASP.NET page, which basically is a quick hack around a database. It's used for an internal project and the site is set up in a way to provide several people read/write access to the data. Once a week, we collect a bunch of data…

Wim ten Brink
- 25,901
- 20
- 83
- 149
6
votes
1 answer
Dynamic Data DataAnnotations setting dynamically using t4 template
Is there any way to set dynamically the dataannotations according to some values in database?
My requirement is like this:
Display(Name="DispName")]
public string DName{get;set;}
Instead of hardcoding Name="DispName" for Display DataAnnotation, I…

Sujith S Nair
- 738
- 6
- 20
5
votes
2 answers
ASP.NET Dynamic Data : How to Specify Sort Order of Items in Dropdown List
I am using ASP.NET dynamic data for the data adminstration tasks for a Silverlight app that I built. It saved a ton of time not having to write all of the admin screens you typically have to create for end users to manage the data.
One thing I…

MIantosca
- 833
- 1
- 10
- 33
5
votes
2 answers
how to work with dynamic data and google charts?
For example we have this line chart at Google Code API
there is a defined set of data which this chart reflects, however i want to create the chart using my own data from php/mysql scripting.
Here is the code provided by google to embed into html…

Django Anonymous
- 2,987
- 16
- 58
- 106
5
votes
3 answers
Dynamic Data Web Application: How do I change the default filter so that it displays more than 10 rows?
Dynamic Data Web Application
How do I change the default filter so that it displays more than 10 rows?
I recently created a Dynamic Data website to help manage a few dozen lookup tables for my business intelligence data warehouse and I am having…

Registered User
- 8,357
- 8
- 49
- 65
5
votes
4 answers
Should I use SubSonic or Dynamic Data for a new CRUD asp.net application?
I need to throw together a quick CRUD asp.net site, but this may become a bigger application down the road. I have some experience with SubSonic, but it has been so long since I did a project with it I have to relearn it. I am also considering using…

notandy
- 3,330
- 1
- 27
- 35
5
votes
0 answers
.NET Dynamic Data Many-To-Many with LINQ to SQL
We have a Dynamic Data site we're using for administration and we currently need a way to manage a many-to-many relationship. There are plenty of examples of how to do this using the Entity framework but none that show how this can be done with Linq…

Bart Jedrocha
- 11,450
- 5
- 43
- 53
5
votes
2 answers
Hierarchical data in a drop-down list on Dynamic Data site
I'm getting into dynamic data sites (remarkably powerful), and enjoying it. However, I have a requirement that I can't seem to meet. I have a self-joined category table (Id, Name, ParentId) to create a hierarchical category structure (e.g. the…

Mike Kingscott
- 477
- 1
- 5
- 19
5
votes
3 answers
How to store custom user fields in database
I am trying to find a tutorial that will guide me on how user based custom fields works. Like in surveys sites, where they let users create custom fields and store them and more importantly store the data entered through those fields.
I am looking…

Ridvan
- 51
- 1
5
votes
2 answers
Why is it not possible to declare a function with VAR return type?
In C#, we have var data type but we can't use it as functions return type.
Why this is not possible?
public var myFunction()
{
var = some operations
}

Dr TJ
- 3,241
- 2
- 35
- 51
5
votes
2 answers
ASP.NET MVC, partial views and data
Can anyone elaborate on why you'd define ViewData["MenuData"] on every action for something like a dynamic menu?
I have a simple partial view which renders a menu, I render this menu from within a master page. This is intutive for me comming from…

John Leidegren
- 59,920
- 20
- 131
- 152
5
votes
3 answers
Is there an easier way to create a WCF/OData Data Service Query Provider?
I have a simple little data model resembling the following:
InventoryContext
{
IEnumerable GetComputers()
IEnumerable GetPrinters()
}
Computer
{
public string ComputerName { get; set; }
public string Location { get; set;…

Brandon
- 13,956
- 16
- 72
- 114
5
votes
4 answers
CodeIgniter: Where should a particular functionality go?
Here is a quick overview of the controllers functionality in most of the application:
controller loads a specific model, gets data from it, formats the data and passes the formatted data to the view.
Now there is a search page, which needs to do a…

Samnan
- 653
- 1
- 5
- 13