Questions tagged [dynamic-data]

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

984 questions
5
votes
1 answer

Adding Custom Filters for Dynamic Data Website (VS2010, EF4)

Trying to add some different filters (in addition to the ForeignKey filter) to a Dynamic Data Website in VS2010 using EF4. I can add the new Filter templates, but how do I specify which template will get displayed for each property in my…
5
votes
0 answers

Dynamic Data won't display calculated fields; ASP.NET 4.5, Entity Framework 5.0

I'm trying to display calculated fields in my Dynamic Data Entities site. I have generated my EDMX file from an existing database, and have added customizations in a separate file using partial classes. I want the calculated fields to show up on…
5
votes
1 answer

Why am I receiving an error about Delphi incompatible types (array and dynamic array)?

(EDIT: This is following on from Are objects reference counted in Windows-targeted Delphi applications, and if so, what is its purpose? and Dynamic arrays and memory management in Delphi). I have two classes (TGenericHoldingSummary,…
magnus
  • 4,031
  • 7
  • 26
  • 48
5
votes
3 answers

Accessing data from another database in stored procedure

Following is my schema detail: DB_A : schema_1, schema_2, schema_3 DB_B : schema_3 some procedures in schema_3 access resources(table, view, sp) from schema_1 and schema_2. All procedures in schema_3 are same on both the dbs. How do I access…
Durgesh Chaudhary
  • 1,075
  • 2
  • 12
  • 31
5
votes
2 answers

Dynamic view with swiping horizontally and vertically

Please check above view I have to create a view accordingly, where when we slide left to right images will come same as right to left. When I slide top to bottom a web view will come and sliding bottom to top images will come. All the data like…
Abhinav Singh Maurya
  • 3,313
  • 8
  • 33
  • 51
5
votes
2 answers

Entity Framework Dynamic DbSet for all entities

I have a database mapped with Entity Framework, I need to implement a generic method for getting a a list of items based on a parameter that I pass: getGenericList("product"); // returns the list of products getGenericList("customer"); // returns…
5
votes
3 answers

Dynamic Data - How to show the Primary Key field in the List

I'm finally digging into Dynamic Data (long overdue). I notice that when I'm viewing the web site, on the main table lists, the primary key field is not displayed. For example, I have a table that holds Status Codes, with two fields. StatusCode…
David
  • 72,686
  • 18
  • 132
  • 173
5
votes
3 answers

Set database name dynamically in LINQ to SQL

I am using LINQ to SQL to connect to database from my application. When I am changing environment from production to staging, I can update my connection string in web.config. But there is one more value I need to update when environment changes.…
Manoj Attal
  • 2,806
  • 3
  • 28
  • 31
5
votes
1 answer

Populate dialog form fields with dynamic table data onclick of a jquery button

I haven't posted a question here before, but this site has been very helpful, so thank you. I have been having some trouble populating a jQuery dialog form with dynamic table data when I click an "edit" button in the same row as the fields i want to…
leemjac
  • 55
  • 1
  • 7
5
votes
2 answers

How to change order of dynamic filter controls?

I have a ASP.NET dynamic data site that has multiple filter controls built using metadata such as: [ScaffoldTable(true), MetadataType(typeof(Fees.Metadata))] public partial class Fees { public class Metadata { …
kravits88
  • 12,431
  • 1
  • 51
  • 53
5
votes
1 answer

How can I parse dynamic content from a web page?

I try to get a proxy list from this url: Free proxy list This would be cool, but port number is dynamic JavaScript content. How can I get JavaScript-generated content from this page? I have jsoup and djNativeSwing but I want do this in background…
Trump
  • 77
  • 1
  • 7
5
votes
3 answers

Dynamically create table and Java classes at runtime

I have a requirement in my application. My tables won't be defined beforehand. For example, if a user creates a form by name Student, and adds its attributes like name, roll no, subject, class etc, then on runtime, there should be a table created by…
rima
5
votes
6 answers

Dynamically store lines of strings using C

I want to store lines of strings dynamically using C language. for e.g sadasdasda5245sdf fadfa6456 fasdf90-70=790 the number of such lines and the length of each line can be anything.Is there any way to store the whole thing dynamically.
Biswajyoti Das
  • 7,881
  • 11
  • 34
  • 26
5
votes
2 answers

Javascript: dynamically named global variable

I have a global variable which looks like this: var socket_x = 'whatever'; The thing is that "x" would depend on the user session. Let's say the user id is 123, i want the global variable to be: var socket_123 = 'whatever'; This way, each user…
Baylock
  • 1,246
  • 4
  • 25
  • 49
4
votes
1 answer

Dynamic Data - Selecting a table from a DropDownList to scaffold in a GridView

I have been struggling with this ASP.NET Dynamic Data problem for days now... I have a DropDownList containing the table names of all the tables in my data context (.dbml) file. When I select the DropDownList, it needs to scaffold the selected…
Curious Coder
  • 177
  • 1
  • 11