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:

220 questions
0
votes
1 answer

Remove delete button from generic Dynamic Data

(asp.net dynamic data) In the db.cs file I have declared the below (relating to the 'Invoice Info' table) [ScaffoldTable(true)] [DisplayName("Invoice Info")] [MetadataType(typeof(Invoice_Info_MetaData))] [DropDownList(Role =…
John
  • 3,965
  • 21
  • 77
  • 163
0
votes
1 answer

Using custom editor in ASP.NET Dynamic Data

Is it possible i use some WYSIWYG editors like TinyMCE or FCK Editor instead of MultiLine Textbox for ASP.NET Dynamic Data? The default object is a server side object but i want to use a client side objects that working ajax.
Saman Gholami
  • 3,416
  • 7
  • 30
  • 71
0
votes
1 answer

Textarea not rendered for DataType.MultilineText

I have an EditItemTemplate within a ASP.NET 4.5 Web Forms FormView. I've set an ItemType on the FormView so I'm using DynamicControls to display and edit fields.
0
votes
2 answers

How to generate GUIDs automatically while creating a site using ASP.NET Dynamic Data?

I am having an SQL Server database, which is having a lots of table. Each of the table is having a primary column, which in fact is a GUID column. I have created new ASP.NET Dynamic data site to manage these tables. The problem is that, the GUIDs…
Nirman
  • 6,715
  • 19
  • 72
  • 139
0
votes
1 answer

Null Reference to Entity Association when overriding ToString in partial class - EntityDataSource.Include is being ignored

I am using Dynamic Data for Entity Framework, unfortunately I'm stuck on .NET 3.5, so it's EF1, and at the moment this cannot change. So my problem is this, I have tried adding the EntityDataSource.Include property in a couple of ways to deal with…
m4chine
  • 431
  • 1
  • 7
  • 16
0
votes
1 answer

How to make custom Dynamic Data field template combo box required

I have created a custom dynamic data field template to display a drop down list of states. The drop down appears no problem. But it is not displaying as 'Required'. Meaning if I leave it blank, I can still move on to the next page. Other fields on…
Ethan Schofer
  • 1,718
  • 5
  • 26
  • 55
0
votes
1 answer

Dynamic Data security trimming

When using dynamic data is there a way to only allow users to see records that contain their name/id #. Meaning that when they filter the data only their information shows up rather than every users.
0
votes
0 answers

Index out of range error when clicking foreign key link in Dynamic Data DetailsView

Using ASP.NET, I created dynamic data folder using custom pages. The table in the DB that this folder refers to has 3 FK's, which appear as hyperlinks when viewed on screen inside the table (see below) Take the first record for an example, When I…
Mick
  • 183
  • 2
  • 3
  • 12
0
votes
2 answers

How to implement Search in Dynamic Data Site in .NET 4 with LINQ to SQL Classes

I just created a Default Dynamic Data Site. How Can I add search to it?
CryptoJones
  • 734
  • 3
  • 11
  • 33
0
votes
1 answer

ASP.NET Dynamic Data Image Field Template

I'm engaged in a minor skirmish with Dynamic Data. I've got a custom database image field template to allow users to upload and edit images where inserting works but updating does not. I can make update work by removing the if insert mode around…
0
votes
1 answer

Is ASP.Net Dynamic Data open source?

According to this article http://www.infoq.com/articles/role-open-source-asp.net Dynamic Data is open source. However I could not find System.Web.DynamicData on http://aspnetwebstack.codeplex.com/SourceControl/changeset/view/4284ca5270b9 and google…
user198552
  • 431
  • 4
  • 15
0
votes
1 answer

How do I change the page title from Dynamic Data Site in the Visual Studio Template

I create a Dynamic Data Site from a Template in Visual Studio 2010. The Page title says "Dynamic Data Site." How do I change this? Thanks, CJ
CryptoJones
  • 734
  • 3
  • 11
  • 33
0
votes
1 answer

ASP.Net removing borders from (nested) DataGrid

I'm trying to remove the borders from a datagrid on an ASP.NET control. The control is a custom field template for a dynamic data website (if that matters) and is nested inside another datagrid. The problem is that whatever I do, it still has the…
Robert Fraser
  • 10,649
  • 8
  • 69
  • 93
0
votes
1 answer

asp.net navigation custom pages

I have an ASP.NET Dynamic Data Web Site. I have created a new Web Form at the top level and access it with NavigateUrl="~/ChangePassword.aspx". However if I try to add a new Web Form inside the CustomPages folder I can't access it like this...Why is…
John
  • 3,965
  • 21
  • 77
  • 163
0
votes
1 answer

Dynamic Data website only displays rows that it inserted to DB

I'm pretty new to creating dynamic data websites - I created one a year ago that is working fine but now I'm trying a 2nd one and having a strange problem. I'm using VS2010, VB.net & followed MS's waltkthrough for creating a web site using Linq to…
John DMC
  • 95
  • 7