Questions tagged [dynamic-data]

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

984 questions
8
votes
4 answers

Are there any alternative scaffolding frameworks to Asp.Net Dynamic Data?

I have been playing around with Dynamic Data but I find the filtering and navigation aspects basically useless for but the simplest scenarios, even in preview 4. I specifically want to be able to handle hierarchical self-reference tables when…
Breadtruck
  • 1,943
  • 5
  • 25
  • 39
8
votes
4 answers

Rails gem/plugin for dynamic custom fields in model

Is there any gem/plugin for ruby on rails which gives the ability to define custom fields in a model at runtime with no need to change the model itself for every different field. I'm looking for something like Redmine acts_as_customizable plugin…
Fabio
  • 18,856
  • 9
  • 82
  • 114
7
votes
1 answer

Create derrived collection of ViewModels with DynamicData which updates existing item instead of creating a new one on source item change

For example, I have an observable of some collections which indicates statuses of objects (I get it periodically through REST API). class User { int Id { get; } string Name { get; } string Status { get; } } IObservable source; I…
Paboka
  • 422
  • 1
  • 5
  • 15
7
votes
3 answers

In CAKEPHP can we dynamically change the table linked to a particular model?

Suppose I have 2 identical table having same structure(Call it 'tableA' & 'tableB'). I want to save certain data on table 'A' and certain data on table 'B'. NOW I want to use the same MODEL for both the table. I want to change the table linked with…
Libu
  • 213
  • 3
  • 10
7
votes
7 answers

How to work with dynamically created fields?

I have web layout, which can contains several links on it. Those links are dynamically created, using AJAX functions. And it works ok. But, I don't know how can I work with those "dynamically created links" (ie. how to call some JS or jQuery…
user198003
  • 11,029
  • 28
  • 94
  • 152
7
votes
4 answers

Editing tables with ASP.Net - Quick 'n Dirty

I have need to provide a way for users to edit tables in ASP.Net. The tables are simple (no master/detail relationships), but there are likely to be a lot of them. What's the quickest/simplest way to provide a view/edit interface to a table, even…
Tim Coker
  • 6,484
  • 2
  • 31
  • 62
7
votes
1 answer

ASP.Net RADs: Dynamic Data alternatives

We have a set of tables and views that merely store some config data for embedded devices. this schema is change-prone and do not really required lots of logic, beyond some validation rules. so we considered using a RAD tool for maintaining these…
SDReyes
  • 9,798
  • 16
  • 53
  • 92
6
votes
3 answers

ASP.NET Dynamic Data not seeing partial metadata "buddy" class

I have an ASP.NET 4 Dynamic Data web site that is running against a fairly simple set of database tables, exposed through an Entity Framework model in another assembly. I don't want to scaffold all of the tables in the EF model, so in my global.asax…
Matt Peterson
  • 5,169
  • 4
  • 32
  • 34
6
votes
2 answers

Creating a dynamic table with PHP

I'm trying to make a dynamic table with PHP. I have a page which displays all the pictures from a database. I need the table to be of 5 columns only. If more than 5 pictures are returned, it should create a new row and the displaying of the rest of…
maxxon15
  • 1,559
  • 4
  • 22
  • 35
6
votes
3 answers

Need advice on selecting a data access method

I am in the early stages of planning a conversion of a large classic ASP database application to ASP.Net and I'm having trouble picking out which data access method to use. I have played around with Linq To SQL, Dynamic Data, strongly typed…
6
votes
1 answer

C# Unit Test DynamicDataDisplayName using MSTest

I am performing some unit test using MSTest and I learned that I can use the [DynamicData] attribute to input different cases for testing, but I can't use the attribute property: DynamicDataDisplayName to set a name for the different cases. My test…
Taher
  • 565
  • 1
  • 14
  • 32
6
votes
1 answer

Export to XML from Dynamic Data Site

I have to update an existing site that's based on DDS on top of the Entity Framework, and it uses three different database models from three different databases. And what it needs is a simple addition to the ListDetails page: an export to XML…
Wim ten Brink
  • 25,901
  • 20
  • 83
  • 149
6
votes
1 answer

ReactiveUI 9: binding lists to a WPF view

In ReactiveUI 9, ReactiveList has been deprecated in favor of DynamicData (Blog post). I am currently in the process of trying to update my code to use SourceList. I was able to get the ViewModel to work, however it seems that using SourceList as a…
Wouter
  • 538
  • 6
  • 15
6
votes
1 answer

Define Scaffolding. (with respect to Dynamic Data and ASP.NET MVC)

There is a lot of information about how to implement and customize scaffolding with Dynamic Data and ASP.NET MVC. What exactly is the definition of scaffolding when used in this context?
smartcaveman
  • 41,281
  • 29
  • 127
  • 212
6
votes
2 answers

Create "L" shape curved line with dynamic data

I want to draw a pure dynamic view like below image I have two arraylist List type and List level; type have name(max,type1,type2, etc) and level have marker value of type level will always lie between 0 to 1 and type will be a…
DJhon
  • 1,548
  • 3
  • 22
  • 39