Tagged Questions

DetailsView is a data-bound control that renders a single record at a time from its associated data source

learn more… | top users | synonyms

4
votes
2answers
367 views

Are DetailsView /FormView enough rich for Edit and Insert?

Hi I'm wondering are DetailsView/FormView and ObjectDataSource have enough capability for Inserting/Editing your records or not ? Or better ask you Do you prefer use them or make your form by your ...
3
votes
2answers
1k views

How to select second td in detailsview datarow?

I am trying create a new css for shaping my detailsview. But i couldn't reach to second td in detailsviews field rows. do you have any idea to access 2nd td? But please imagine belov code generated ...
2
votes
1answer
25 views

How to Load the Same UIVew with Different Data from a Table List?

I have a small project where I'm trying to build a recipe list for a game. I have my UITableView running great - the only problem is that I don't know how to connect each cell with a DetailView. ...
2
votes
1answer
93 views

What is DetailsView.EnableModelValidation?

The MSDN documentation on DetailsView.EnableModelValidation is very brief: Gets or sets a value that indicates whether data-model validation is enabled. Figuring out that true means enabled and ...
2
votes
0answers
47 views

Grouping together DetailsView rows?

If i have a DetailsView with many rows, is it possible to "Group" some of the rows together? Ie. make them seperated from the rest of the rows by using a div and some labels or whatnot. I tried to do ...
2
votes
2answers
346 views

DetailsView.ItemInserted Event find the Primary Key (DataKey)

net and C# 4. I have a DetailsView Control, and I use some custom logic for data binding. When input data in my DetailsView I would like to use the Event "Inserted" (or another) to get from the ...
2
votes
1answer
687 views

Binding dropdownlist to dropdownlist to detailsview ASP.NET C#

I'm trying to bind a Dropdownlist to a Detailsview control in a page where the result of the second Dropdownlist depends on the first one. I could bind a single Dropdownlist to a Detailsview but if I ...
2
votes
1answer
664 views

DetailsView not updating and changing only after 2 clicks, Cancel not showing editable values in readonly

I created a detailsview which appears after a date is selected in a calender. This detailsview is filled via a select statement in code behind. Here is a list of my problems i encouter: I have to ...
2
votes
1answer
553 views

How to create a custom button in a DetailsView in ASP.NET?

I am a newbie in ASP.NET. I just want to ask if it is possible to create a button or hyperlink in a DetailsView. I know that there are Edit, Delete, etc. in a DetailsView, but I want to create another ...
2
votes
2answers
3k views

ASP.NET OnDataBinding event for EditItemTemplate DropDownList

I have a dropdownlist control in an edititemtemplate for a details view defined like this: <asp:TemplateField HeaderText="Primary Use"> <EditItemTemplate> <asp:DropDownList ...
2
votes
1answer
397 views

asp.net: DetailsView control not interpreting html

I have a asp.net detailsview control on a page. I've noticed that it always displays the raw text from my database field, it doesn't interpret the html in the text -- so it displays < b>mytext< ...
2
votes
3answers
1k views

Listview/DetailsView: Hide a null field

I imagine this is quite a common problem, but as yet I haven't found an elegant solution. I have a number of instances where I have either a ListView or a DetailsView control that is bound to a SQL ...
2
votes
2answers
3k views

How to programmatically set parameters for EntityDataSource and DetailsView?

Im stumped! What is the best way to programmatically set a selecting parameter for the EntityDataSource control? Specifically, I want to use the Page.User.ProviderUserKey to get a record in a custom ...
2
votes
2answers
2k views

Finding user control in TemplateField of DetailsView

I have a DetailsView that I'm posting back - and inside of that is a UserControl. I'm having some difficulty located it in the postback data. As an example: <asp:DetailsView ID="dvDetailsView" ...
2
votes
1answer
844 views

Adding TemplateField to DetailsView

How do I add TemplateField control to the beginning of the DetailsView Fields collection? Here is my code.. TemplateField tf = new TemplateField(); ... ... dv.Fields.Add(tf); This adds to the very ...
2
votes
1answer
2k views

asp.net add templatefield items for many dropdownlist to detailsview control

How can I add the following templatefield programmatically for each of the dropdownlist control inside the details view? <asp:TemplateField HeaderText="Your Gender"> ...
2
votes
1answer
848 views

Can I add an additional action to a DetailsView in ASP.NET?

Currently I have a DetailsView attached to a GridView. When you select an item from the GridView the details show up in the DetailsView (duh). Right now there are 3 event options on the DetailsView: ...
2
votes
1answer
1k views

Getting index of a gridview when hyperlinkfield is clicked

I have a web app(ASP.NET 2.0 using C#) that I am working on. In it, I have a gridview with a hyperlinkfield on a page(My_Page.aspx). When the Hyperlinkfield is clicked, it shows details on the same ...
2
votes
6answers
1k views

asp.net panel statement

am having trouble with visible attribute of an asp.net panel. Basically I have a page that calls a database table and returns the results in a detailsview. However, some of the values that are ...
1
vote
1answer
53 views

Getting DB info about the currently logged in user into DetailsView [closed]

I have extended the asp.net membership to include additional user info (address details, phone number, etc) in a separate table using the UserId GUID as a foreign key. I am trying to create a ...
1
vote
1answer
47 views

VB.net DetailsView to use more than one datasource?

I have a DetailsView that looks just about perfect. The only thing is, there is one field that actually gets its information from another table. It is an ID field that is linked to another table in ...
1
vote
1answer
75 views

Using client script on GridView's SelectedIndexChanged event

Here is the code behind: protected void GridView1_SelectedIndexChanged(object sender, EventArgs e) { DetailsView1.Visible = true; string csName = "showDetails"; StringBuilder sb = new ...
1
vote
2answers
52 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
2answers
107 views

Get primary key column value after inserting record using DetailsView and EntityDataSource

I'm using DetailsView with EntityDataSource and binding EntityDataSource directly with Entity Model. I want to get the primary key value after record has been inserted. How can I get it either in ...
1
vote
1answer
126 views

Ajax Control Toolkit Calendar control not working in DetailsView EditItemTemplate

I have a DetailsView with a bunch of EditItemTemplates. One of them has a text box that accepts dates. In order to make the form more user friendly I wanted to add an Ajax toolkit calendar control so ...
1
vote
3answers
38 views

Is it possible ot extract the Checked state from a CheckboxField within a DetailsView?

Originally I had a TemplateField with a CheckBox in it but I couldn't set the checkbox Value using Checked='<%# (bool)Bind("FieldName") %> or Checked='<%# (bool)Eval("FieldName") ...
1
vote
1answer
112 views

detailsview with multiple dropdownlists

I have a DetailsView like this: <asp:DetailsView ID="detailsView1" runat="server" DataSourceID="edsdetailsView" AutoGenerateRows="False" CssClass="pretty-table"> <Fields> ...
1
vote
1answer
33 views

DetailsView binding to child object

I am trying to bind a BoundField of a DetailsView control to a child object of the datasource, I can't seem to find the right syntax. Here's some sample code; <asp:BoundField ...
1
vote
0answers
97 views

Dynamically Add TemplateField to Details View

I have a grid view that, on selected index, will populate a details view. If the selected index happens to have multiple IP Address's I want to add additional fields to display them. They don't need ...
1
vote
1answer
97 views

DetailsView converts TextBoxes empty string to null

I have a basic ASP.NET Web Forms application. I give the user the possibility to create the records by using a Web Form and to update them by using a DetailsView. The web form stores the empty ...
1
vote
0answers
53 views

One-way data bind in GridView/DetailsView

In my GridView/DetailsView (using templates) if I use Eval I get the value from the database and siplay to the grid. If I use Bind I get the value from the database and upon submit I write it in the ...
1
vote
0answers
199 views

How to set default value of a detailsView's textbox in insert mode in an elegant way?

I want to set default value for textbox in DetailsView in insert mode. DetailsView uses ObjectDataSource object for providing data. Now I'm using FindControl method in detailsView PreRender event ...
1
vote
0answers
74 views

ASP.Net: Setting the width for DetailsView

I am using a DetailsView control with a field that has a large amount of HTML text. The rendered page displays the DetailsView data column with a very narrow width. What I'd like to be able to do is ...
1
vote
2answers
97 views

Getting a lits of all child controls of a control, by type

im trying to make a method that creates a List with the name of all the child controls of a DetalsView that are of type string. The closest i got was: foreach (Control c in dv.Controls) ...
1
vote
1answer
150 views

Access Textbox inside DetailsView

Does anyone have any idea how I can set the text of a textbox inside a DetailsView field (c#)? I've tried a few variations but all return out of context and object reference not set errors. Heres my ...
1
vote
1answer
89 views

DetailsView image updating problem

I have DetailsView with users Info (Name, Email, Picture). That DetailsView control can be edited. Values are from DataBase protected void DVUserInfoShow_ItemUpdating(object sender, ...
1
vote
2answers
71 views

Details view is giving me some problems as I am using a custom business logic layer and not a SQLDataSource

I have a DetailsView that uses my Business Logic Layer in the code behind. I still use the DetailsView declaratively the same as if you drop a label control on the page but I don't declare a ...
1
vote
2answers
239 views

Core Data: Automatically select next table row when record deleted

I'm working on a Core Data driven iPad app with a split view controller. Just imagine the iPad Mail app and you'll be on the right track. When I select a record in the Root View Controller, the ...
1
vote
1answer
21 views

Which event fires when selecting an Item in ASP.NET DetailView?

I have put a select button in my DetailView and I want to catch its event, but I can't seem to find it.
1
vote
2answers
42 views

Is there a way to dim a web page when a Details View Control is visible?

I am familiar with sites that when a message box appears, the web page dims in brightness, to focus on the particular message. I am building a site with Microsoft Web Developer 2010. A ASP.net site. ...
1
vote
1answer
137 views

Entity Framework and DetailsView in N-Tier Application

I am absolutely new to Entity Framework so please don't hesitate to point any errors. Anyway I'll try to describe my problem as I understand it. I am creating a n-Tier application with Entity ...
1
vote
2answers
507 views

Asp.net DetailsView - multiple columns?

By default, DetailsView supports 2 columns. I'd like to add a third column. Is this possible using DetailsView? Creating a table within each field doesn't do what I'd like as the third column won't ...
1
vote
3answers
82 views

Access Textbox content that is inside a detailsView cell

Hi I need to access the contents of a textbox that is inside a details view: <asp:TemplateField HeaderText="Transaction Name:" > <InsertItemTemplate> ...
1
vote
1answer
228 views

Binding DataTable to DetailsView control

I have a DetailsView control that I want to populate with a data table. I'm doing this in code behind. After checking that the data table is created successfully, the code is: ...
1
vote
2answers
83 views

Transparent view on the stack

I am trying to figure out my possibilities. I have a TableCellView with a disclosure button. When you hit the the disclosure button currently a viewcontroller is pushed on the stack with a picker. ...
1
vote
3answers
126 views

ASP.NET: GridView and DetailsView, Do I have to have separate connections to same database?

I have a GV and a DV that extract data from the same database. The link between these controls is when a record in the GV is selected, the DV displays more details about that record. Do I need ...
1
vote
1answer
379 views

ASP.NET: How to display a FormView in a (popup) window when item selected in Gridview?

I want my GridView and a FormView (or DetailsView) to work together. When an item in the GridView is selected, I want to open a popup window and display more details about the selected item. Since I ...
1
vote
0answers
99 views

Set a DetailsView to show a specif row using a QueryString and an Inner Control with the same value

I use ASP.NET. I have a DetailsView with DataSource to EntityDataSource. EntityDataSource has a WhereParameter connected to a control on the page. I need add some logic to allow the DetailsView to ...
1
vote
0answers
133 views

Work with child EntitySet in databound detailsview

I am working with ASP.Net (forms) and Linq To SQL. I have a parent table called Feedback, a table called Tags and a table called FeedbackTags which allows me to relate tags to feedback items. I have a ...
1
vote
1answer
564 views

OldValues collection in event “ItemUpdating” of DetailsView is always empty

I´m using a DetailsView but when updating, I cannot get the OldValues because the DetailsViewUpdateEventArgs.OldValues of ItemUpdating event is always empty. The NewValues has the values ok. Note: ...

1 2 3 4 5 6