Questions tagged [asp.net-dynamic-data]

ASP.NET Dynamic Data allows users to easily create extensible, data-driven Web applications by using scaffolding, which uses metadata from the data model to create the UI for Web applications. It dynamically generates Web Pages at run time from data model with list, add, edit templates with support for sorting and paging.

ASP.NET Dynamic Data is an extension to Microsoft's ASP.NET platform which allows users to easily create extensible, data-driven Web applications by using scaffolding. Scaffolding uses metadata from the data model to create the UI for the Web application. Scaffolding auto-generates Web pages that provide create, read, update and delete (CRUD) operations for each table in the model.

References:

218 questions
0
votes
2 answers

jquery datepicker work in dynamic data

I follow this instruction: http://weblogs.asp.net/dotnetstories/archive/2011/07/01/a-simple-tutorial-on-asp-net-dynamic-data.aspx?CommentPosted=true#commentmessage I have added the links to my ASP.NET Dynamic Data master page as follow:
Karadous
  • 1,423
  • 3
  • 26
  • 36
0
votes
2 answers

datepicker in dynamic data

Any help is appreciated. I'm new to Dynamic Data. I want to users be able use datepicker when filling date fields. I have a date picker component which is a dll file. How can I use it in Dynamic Data?
Karadous
  • 1,423
  • 3
  • 26
  • 36
0
votes
1 answer

Why is ForeignKey_Edit loading primary key as the value, instead of the actual value used in the association?

I'm using ASP.NET dynamic data to create a ticket edit form. The Ticket is associated to a problem code, but not using the problem code's primary key. (The database is 3rd party, so I don't have control over that...) So the problemCode looks…
CodeRedick
  • 7,062
  • 7
  • 43
  • 70
0
votes
1 answer

...is not a foreign key column and cannot be used here?

I have two views in SQL, and have created mappings to them in Linq to SQL. The two views have an association, which works fine, between Ticket.ProblemCode and Problem.Code When I try to set UIHint("ForeignKey") on Ticket.ProblemCode and run the web…
CodeRedick
  • 7,062
  • 7
  • 43
  • 70
0
votes
1 answer

Adding table from another database to ASP.NET Dynamic Data + Entity Framework

I have a table in another database I would like to scaffold via ASP.NET Dynamic Data and incorporate into my existing Entity Model - is there anyway to do this? (eg using a view or other mechanism or customize the view, edit or insert operations via…
-1
votes
1 answer

In Dynamic-Data how do I get the results count of a DynamicFilter?

I have a Dynamic-Data application with a List.aspx main page listing data which can be filtered by country. The country table is used as a DynamicFilter as it is a foreignkey to the main table. When I choose a state the DynamicFilter_FilterChanged…
DevilDog
  • 313
  • 1
  • 2
  • 10
-1
votes
2 answers

Dynamic Data : How to bind specific column value into dropdownlist

I'm working on a project of type "ASP.NET dynamic data LINQ to LINQ application". When i execute my application I'm getting all labels and DropDownLists dynamically binding. I'm referring this blog. Now I need to populate those DropDownList based on…
Neo
  • 13,482
  • 47
  • 173
  • 339
-1
votes
1 answer

Is it possible to change the display name of EntitySet fields?

Every foreign key is defined as a EntitySet in Dynamic Data. Is it possible to change the display name of these EntitySet fields?
Karadous
  • 1,423
  • 3
  • 26
  • 36
1 2 3
14
15