VS 2008 - Gridview Control - User Edit Only One Column

Mar 14, 2011

I have a gridview control on .aspx page. Situation is, the columns in the gridview control are not databound. I query the database and load the gridview control using the following code.

GridViewstockcalc.Visible = true;
GridViewstockcalc.DataSource = dataSetstockcap.Tables[0];
GridViewstockcalc.DataBind();

The gridview control shows about 13 columns from the database. But we want the user to be able to edit only one column. Rest of the 12 columsn should be read only. When the clicks one Edit button button, as usual the Update and Cancel buttons should come up. It is not happening. Only the _Rowediting event is getting trigged. Following is the code from my .aspx page. I don't know anything about template columns and not sure if I have to use that concept in my situation.

<asp:GridView ID="GridViewstockcalc" runat="server"
HeaderStyle-BackColor="#444444"
HeaderStyle-ForeColor="White"
onrowcommand="GridViewstockcalc_RowCommand" Height="150px"
Font-Size="Small" onrowediting="GridViewstockcalc_RowEditing"
onrowupdating="GridViewstockcalc_RowUpdating">
<Columns>
<asp:CommandField ShowEditButton="true" ShowCancelButton="true" />
<asp:TemplateField HeaderText="ticker">
<ItemTemplate>
<%# Eval("ticker")%>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox runat="server" ID="txtticker" Text='<%# Eval("ticker")%>' />
</EditItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="fhlb_ID" HeaderText="ticker" ReadOnly="true" />
</Columns>

View 3 Replies


Similar Messages:

Forms Data Controls :: Edit An Entire Column Instead Of Edit By Row Within A Gridview?

Apr 5, 2010

Can someone tell me if there is a technique to make an entire Column within an gridview (for example digits) editable (instaed of a single row) and update this column after changing values by press an Update-button?

A commercial solution is also o.k. with me, but, of course, a method to do it ourselve would be nice.

View 2 Replies

VS 2008 - Creating Gridview User Control With Sorting And Filtering?

Sep 20, 2010

I find myself always repeating code when it comes to gridviews. I want to build a usercontrol so I can just set a datasource andcolumn types etc and I can use the same control over and over in different projects.

View 4 Replies

Load User Control When Click Gridview Hyper Link Column?

Feb 4, 2010

I want , load user control when click gridview hyper link column...how can i do that?

View 4 Replies

Edit First Column Of GridView?

Apr 8, 2010

I've got very dynamic GridView and I need to allow to user to edit first column of it. After he edit first column of grid it must be updated on DataBase.Is there any ways to handle it ?My only idea is to put some changeable element to first cell of each Row so it must be able to set / get my values for each row but can't find yet any examples of it ... Additional info :GridView takes data from Object data source and all columns are dynamic (yes, maybe except first, but I add it in dynamic way) and load complete DataTable...Currently Using jQuery+Ajax methode on dynamic button but can't disable button's PostBack so with a PostBack it just disappears and dont make the event it must to make...

View 1 Replies

VS 2008 Need To Edit Row In The Gridview?

Jan 28, 2010

I've a problem of losing data when I need to edit my row in the Gridview.

I've two columns and one of them, a templatefield, shows data in html format. So I use a literal control and everything works fine. At the RowEditing event, my literal turns into a FCKEditor but I lose my data.

This is what I wrote into the RowEditing event:

VB Code:

[code]....

Some specifications:this code works greatly in other case where I have the boundfield which is converted in textbox. Riempigriglia is a custom procedure of Grid databind.

View 10 Replies

Data Controls :: GridView BoundField Column Readonly - Disable Specific Columns In Edit Mode Of GridView

May 7, 2015

How to disable editing the data in the cells of datagridview in c#?

View 1 Replies

Edit All Rows For One Column In A GridView?

May 27, 2010

I would like to be able to bulk edit all the rows for one column using a GridView control. What is the best way to do this?

View 3 Replies

VS 2008 Search + Sum + GridView + Edit

Jan 2, 2010

I would like to have your opinion on how how i should do this. I would like to run a search and show the result on the grid view from my database.The search have many criteria , means user can search by first name and last name and amount ...Then i would like the user to be able to be able to edit and delete the records.And finally i would like to show a row showing the sum of some fields.

View 25 Replies

VS 2008 Add/Edit In Gridview With Jquery LightBox?

Feb 25, 2011

I have a custom gridview which is populated using a 3 tier architecture. Please can someone show me how I can use a jquery lightbox in my gridview to add/edit records. How can I implement this using my DAL and BLL.this seems like the most user friendly method of adding/editing to me. What do you guys think?

View 12 Replies

C# - How To Edit Column Value Before Binding To Gridview After Retrieving From Database

Nov 16, 2010

After i retrieved a set of datatable from database, i need to edit the rows value before binding to the gridview. for example, a set of datatable is retrived from database.

eg: [userid], [userEmail] --> 1 , james@hotmail.com

i would like to change "james@hotmail.com" to "james" then bind it to gridview. Every rows of [userEmail] will be separated with the mail extension (@hotmail.com) ... how should i do..?

View 2 Replies

Forms Data Controls :: Variable Column Name In GridView Edit Mode?

Oct 23, 2010

I have implemented globalization in my website by using Global Resources. I thought of implementing it not only on controls but in database fields. So for some columns which would be single columns in normal conditions, I considered multiple columns for different culture. For example if there was a [Title] column, I replaced it with [Title-en-US], [Title-en-GB], [Title-es-ES] and etc.I have a web page with a GridView control that displays the content of that table. In a normal case (without globalizing), I would have a TemplateField in the GridView like this:

[Code]....

I have columns for each culture defined in the system so that based on the user's choice, I display that corresponding column content.My question is I have no idea what I should set the Text and SelectedValue properties in HTML code above.Something like this: Text='<%# Bind("myTable.[Title-" &#43; TheSelectedCulture &#43; "]") %>' !!!!!

View 3 Replies

Forms Data Controls :: Edit All Cells Within A Particular Column => Gridview (vb Code)?

Oct 20, 2010

I'm looking for a technique to edit a whole column (vertical) instead of a row (horizontal).Suppose i have 10 rows en 5 columns (like in Excel), and i want to edit all digits from different students (rows) for test number 3 (column).

View 2 Replies

Data Controls :: How To Validate BoundField Column In Edit Mode Of GridView

May 7, 2015

How can I put validations in editable grid?

View 1 Replies

Forms Data Controls :: Gridview - Disable Edit Button If Condition In Another Column Is Met?

Jan 13, 2010

I have been trying to get a Gridview of a list of usernames and passwords for site login that the Edit button would be disabled if one of the columns had a certain word in it?

For now, I need the Edit button to be disabled if the Username for a record is "admin". Is there a way to do this? My current code is here:

[Code]....

View 15 Replies

Data Controls :: Edit Update GridView Containing HTML Table In TemplateField Column?

May 7, 2015

[URL]

Further question:Is it also possible to edit both the parent fields and all levels of child fields?

View 1 Replies

VS 2008 How To Tell What Column GridView Is Sorted On

Jan 4, 2011

I have a gridview control connected to a sqldatasource control. I am allowing the user to sort the columns in the gridview control. The user can click a row and visit another page. When they return I need to set the column sort again. I have seen that I can use the Sorting event to set the sort order of the data when I return to the page in the Sorting event. But before I leave the page where can i get the column it is currently sorted on along with the direction?

View 3 Replies

AJAX :: AJAX Inline Edit Box Control In GridView Displaying In Edit Mode?

Aug 18, 2010

I have two InlineEditBox.NET controls in a template field inside a GridView. When displayed in the GridView, the first row is OK, but starting with the second row, the controls are automatically displayed in edit mode when the page loads, and I can't figure out why.

[Code]....

View 1 Replies

VS 2008 Combining Two Fields For GridView Column?

Mar 30, 2010

I have a GridView with a SQLDatasource. All of the columns in the gridview are bound to a field. Now they want a column that is not a field returned but would be two of the fields combined together. How can I do this exactly? Can someone show a line of code to display this in a column?

View 8 Replies

Forms Data Controls :: Gridview - Column Styling - Class To Define What Textbox Looks Like In Edit Mode

Jun 10, 2010

In the example below I have set the control style to 'controlName' I want to use this class to define what my textbox looks like in edit mode. This works ok, so far so good. The Problem In a button event I add the class "validationError" to this textbox if the data is incorrect. When the grid gets rendered I expect to get 'controlName validationError as the class applied to the textbox. Unfortunately, it seems that the declarative statement overrides this and simply ends up as 'controlName' how I can intercept the application of the declarative class so that I get what I desire here?

<asp:BoundField
DataField="Name"
HeaderStyle-CssClass="headerName"
ItemStyle-
CssClass="itemName"
ControlStyle-CssClass="controlName"
HeaderText="Name"
>
</asp:BoundField>

View 4 Replies

VS 2008 Need To Add Textbox To Each Header Column Of A Gridview And Filter

Dec 3, 2010

I need a textbox for each column of the header row of my Gridview. Then whatever I type in, say the first column is a Surname, the Gridview needs to be filtered by records with only that Surname.

View 3 Replies

VS 2008 - GridView Bound Column And Bind Data

Jul 11, 2011

I am trying to create a bound column and bind the data with the below piece of code . And the column has two files Name and Fee but the code binds only the Fees column and Name column become empty..

Code:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;

[Code] ....

Design Part

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">

[Code] ....

View 7 Replies

Forms Data Controls :: Gridview - Check With Accepted Date - Disable Edit Button If Condition In Another Column Is Met?

Aug 9, 2010

I need to check for two differect text to make the Edit button inactive. For example, I need to make the button inactive when the ActionTypeName field has value either Accepted date or Received date. I can do one check with Accepted date but not both.

View 1 Replies

Security :: Want To Be Able To Allow A User To Edit Their Profile In A Details For Or Other Control?

Jun 6, 2010

I wan to be able to allow a user to edit their profile in a details for or other controlLooking at the ASPNETDB tables is is not clear to me how to do this.

View 3 Replies

VS 2008 - Bind Data To Gridview / Hiding And Unhiding A Column

Mar 1, 2012

Right now when I bind data to my gridview, I have a column MemberNo that I use in the RowDataBound in another column for creating a link. Anyways, in the DataBound event i hide the MemberNo column. But I also have a routine where I need to loop through the rows and use the MemberNo. Can I unhide the column MemberNo to use for this routine and then hide it again? I assume I cannot use the data if it is hidden right?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved