Tagged Questions
The dynamicdata tag has no wiki summary.
6
votes
3answers
3k views
Adding a search box to an ASP.Net dynamic data list page
Does anyone know how to add a simple search textbox on an ASP.NET Dynamic Data list page? I want to be able to drill down to a specific row immediately, without having to use the dynamic data filters ...
2
votes
1answer
109 views
Exception “Item has already been added.” in MetaModel.Register
My Global.asax contains the below code,
public class Global : System.Web.HttpApplication
{
private MetaModel _s_Model = new AdvancedMetaModel();
public MetaModel s_Model
{
...
1
vote
2answers
51 views
Dynamic Data: How to enable-disable row editing dynamically?
I have Asp.net application that implemented with Dynamic Data technology.
All data from my database is displayed in DetailsView (standard for dynamic data).
Each row in DetailsView contains icon with ...
1
vote
0answers
593 views
Dynamic Data one-to-many relationships using non-PK fields: Foreign table List.aspx links use incorrect key for one-to-many relationships
Problem: The urls created between tables with one-to-many relationships are incorrect. How can I fix this?
I'm using LINQ to SQL with Dynamic Data.
I have two tables: Users and Addresses:
* There ...
1
vote
1answer
579 views
hide delete button in list page in dynamic data
I am using Asp.Net Dynamic Data. I want to remove delete button from List and details page. I dont want to remove it from mark up. Is there any way to remove delete button based on entity and without ...
1
vote
1answer
461 views
How do I get the value of a DynamicControl?
I'm using ASP.NET Dynamic Data functionality to do something a little weird. Namely, create a dynamic list of fields as children of the main object.
So basically I have Ticket.Fields. The main ...
1
vote
1answer
377 views
What's the difference between ASP.NET DynamicData and IronSpeed?
Will the new commer (DynamicData) relplace the old one (IronSpeed)? They seem to have overlap functionality?
1
vote
2answers
1k views
Remove autogenerate GUID column from Add Entry pages in Dynamic Data Web Application
I have a Dynamic Data Entities Web Application that uses a database with GUIDs as primary keys for tables. All of the GUID fields have the default value set to NEWID() so SQL Server will generate a ...
1
vote
6answers
741 views
Dropdown controls in ASP.NET 2.0
I am using a codebehind page in ASP.NET to perform a SQL query. The query is loaded into a string, the connection is established (To Oracle), and we get it started by having the connection perform ...
0
votes
0answers
18 views
ASP.NET DynamicData Validate Custom Image FieldTemplate
I've created a custom Image Field Template which works fine. I decided to create some kind of validation for image sizes so I've created a custom validation attribute. here is the code:
public class ...
0
votes
2answers
24 views
DynamicData - Dynamic Linq Classes
Anybody know if it's possible to;
Dynamically create LINQ classes for tables/columns that change regularly?
If that creation can be used in DynamicData.
A web app we are developing creates tables ...
0
votes
0answers
16 views
DynamicData with MVC 2
I've a MVC 2 web site written with VS 2008 SP1.
I need to use DynamicData but I know it's based on standard web form pages.
Has Microsoft released an update for DynamicData in MVC? Or what's the best ...
0
votes
1answer
34 views
DynamicData Partial Class not working
Partial class not working with Dynamic Data. I'm not using the default dynamicdata project type, but rather just using it on a control-by-control basis
0
votes
0answers
132 views
Sort GridView by two fields in the DynamicData List page
In my Metadata partial class I created the method:
public string SortColumn
{
get { return Field1 + Field2; }
}
and I created the attribute:
[DisplayColumn("SortColumn", "SortColumn", false)]
...
0
votes
1answer
715 views
Asp.Net, Dynamic Data Website, Foreign key One to One relationship, DropdownList, how to customise?
I'm using Asp.Net's Dynamic Data Website project type.
I've created a db that has one to onerelationship between two tables specified using a foreign key, (this could be one to many but I've used the ...
0
votes
1answer
788 views
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 ...
0
votes
3answers
100 views
Suggestions on which ASP.NET control to use?
I've received a project for internal use. My application has to store about 100 rows of meta data of a game and each row has about 15 fields maximum. Fields can be game name, game category, maker, ...
0
votes
2answers
444 views
ASP.NET DynamicData - add table at runtime?
We currently have an ASP.NET Dynamic Data website for our intranet that was developed by a contractor who is no longer with us.
None of our developers currently have VS 2008 installed, so are not ...
0
votes
3answers
570 views
Convert below C# dynamic data context registration code to VB?
model.RegisterContext(typeof(NorthwindDataContext), new ContextConfiguration()
{
ScaffoldAllTables = true,
MetadataProviderFactory = (type => new ...
0
votes
1answer
92 views
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 ...
0
votes
1answer
255 views
…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 ...
0
votes
1answer
264 views
DynamicData: use custom type as return type
can I force the DBML designer to use my custom types instead of the Auto-generated Types?
I can edit the database.designer.cs, but these changes will be lost when I modify the tables.
If not, how can ...
0
votes
2answers
544 views
Dynamic Control loading at wrong time?
This one is a little... odd. Basically I have a form I'm building using ASP.NET Dynamic Data, which is going to utilize several custom field templates.
I've just added another field to the FormView, ...
0
votes
1answer
801 views
Dynamic Data: Scaffolds are read-only for LINQ classes using Views instead of Tables?
I am trying to use the ASP.NET Dynamic Data features to generate CRUD scaffolding for my data model. My model contains supertype/subtype relationships, so some logical entities are split between two ...
0
votes
3answers
1k views
What's the difference between ASP.Net MVC Routing and the new ASP.Net DynamicData Site routing?
I've only started playing with both ASP.Net MVC and the new-to-VS2008 Dynamic Data Website Templates. I note that they both use routing in their URL handling, and I'm given to understand that because ...