dynamic-data

Dynamic Data custom page Insert to parent/child clears our parent but not child listviews

I'm new to Dynamic Data applications so please forgive me if this isn't clear. I have a custom page for an insert of a parent row. On that page at the bottom is a TabContainer with multiple tabs each with a ListView of a child table. When I click to insert a row for the parent, it clears out the parent properly but in the TabContainer ...

Dynamic Form Help for PHP and MySQL

The code below works as far as inserting records from a file into MySQL, but it only does so properly if the columns in the file are already ordered the same way as in the database. I would like for the user to be able to select the drop down the corresponds to each column in their file to match it up with the columns in the database (t...

get img src from an img loaded dynamically using jQuery

Hey Guys (and Ladies) I am looking at getting the image name from an image with a src loaded dynamically. Basically what I am doing is using the Google chat badge on a site to live chatting. And else where on the page, I have an image saying Live Chat:Online or Live Chat:Offline. And I want this to change depending on whether I am avail...

Entity Framework, unmapped property and Dynamic Data

I'm using an Entity Framework data model to drive a Dynamic Data website for use by users to update data. One of the entities contains a non-nullable string property (Description). In the database, one of the rows has an empty Description (not null but an empty string). When I try to update the Description I get the following validation...

Stopping Filter Display in Dynamic Data Entity Web App

I'm currently experimenting with the Dynamic Data Entity Web App Project type in VS2008 SP1 and after reading many tutorials which offer helpful advice for problems I so far have no need of a solution to I have fallen at the first hurdle. In the DB I have made my entity model from I decided to start small with a table called "Companies"...

Render string as a "label" instead of "input" in ASP.NET MVC 2 using UIHint?

I tried UIHint("Label") but it doesn't change the behavior. If someone also can point me to a list of possible values for UIHint, that would be awesome! ...

How to display changing data in XUL

Hi, I'm trying to build a firefox extension which can get rss feeds and display them in a popup panel. But I'm not aware about how to display feeds in a panel(I know how to display static text).Because the feed is varying all the time. Any help regarding this matter will be appreciated. Thanks in advance. ...

How can I share dynamic data array between Applications?

Hi, I use CreateFileMapping, but this method was not useful,because only static structure can be shared by this method. for example this method is good for following structure: struct MySharedData { unsigned char Flag; int Buff[10]; }; but it's not good for : struct MySharedData { unsigned char Flag; int *Buff; }; woul...

dynamic data customizable

Can we customize our data dynamic project according to our clients requirement? Our Client has experience in old technology like web forms and they want same behaviour of application like in old technology so question is that can we easily customize according to requirement ...

How to load Foreign key referenced tables data also in entity framework

I developed and entity framework (.edmx) application in 4.0 in that i got all the data of my querying table and its foreign key referenced tables data also. but when i change my project to 3.5 i am unable to get the data of foreign key referenced tables data. Please help me out... ...

C++ multidimensional dynamic array

Let's say I have this to create a multidimensional array dynamically: int* *grid = new int*[gridSizeX]; for (int i=0; i<gridSizeX; i++) { grid[i] = new int[gridSizeY]; } Shouldn't be possible now to access elements like grid[x][y] = 20? ...

How do I protect Dynamic data pages using ASP.NET Authentication?

I have a site where most of my pages are arranged in business area folders, e.g. Activations, Outdoors, Branding. Each folder has a small web.config that protects the contents against access by people without a role for that business area. However, basic admin for most business areas is done via Dynamic Data pages. These are only basi...

DynamicMapService on GoogleEarth?

Hi, can anyone tell me if it is possible to display an ArcGIS dynamicMapService on GoogleEarth via the GoogleMaps API? It works fine with KML but my services are only visible on the 2D maps. Any ideas? ...

Can asp.net dynamic data work for more than one database??

Can I have scaffolding for tables from more than one table in a single asp.net dynamic data website?? If so, how do you do it? ...

Display only specific rows on a Dynamic Data Web Site

Hi. I am creating a Dynamic Data Website. For a particular table, I would like to display only specific rows to the user. Meaning I want to filter the rows displayed to the user. Is there a way to change the query that the framework uses to fetch data from the database? ...

How to give dynamic file name in the appender in log4j.xml

Hi I am using log4j.xml to log the informations. I have used log4j.xml file for creating the log files. I have given the absolute path for each log file in param tag value. eg : appender name="FA" class="org.apache.log4j.DailyRollingFileAppender"> param name="DatePattern" value="'_'yyyyMMdd"/> param name="File" value="D:/logFiles/GPrep...

Using database default values with Linq to SQL codewise

I am using Dynamic Data with linq to SQL and SQL Server 2008. I have a GUID column that gets his value from the default value with newguid(). When I set IsDbGenerated to true in the designer it works like a charm. But when I renew table this property is set back to false again. So I added it to the metadata. For some reason it's not ...

What do you call the concept of dynamic data definition?

Maybe this is simpler and more straightforward then what I'm thinking but I can't seem to find this concept on google anywhere. The concept is this: You have a table in a database and the table has a specified number of columns. However, it has been asked of me by previous clients that there also be a set of dynamic user defined columns...

Is it possible to have a dynamic data ASP.net web application using Entity Framework?

Is it possible to have a dynamic data ASP.net web application using Entity Framework? ...

can I include normal asp.net pages (webforms or mvc) in a Dynamic Data web application

can I include normal asp.net pages (webforms or mvc) in a Dynamic Data web application? ...