Web Forms :: GridView - Edit Only Specific Columns And Not All

Jun 16, 2012

I use these code  for my grid view [URL] ....
 
Here have  Customerid  ,Name  ,Company  column when we click on edit that edit Name and Company Column .

I want when user click on Edit they can edit just Name column I want they can't edit Company column how i can do it?

View 1 Replies


Similar Messages:

Web Forms :: GridView Edit Update Only Specific Columns And Not All

May 26, 2012

i have record for 10 student... i want to enter marks and give status pass or fail..i m using grid view to show data.....like

student name       class        marks      Pass/fail(should be drop down)      marks

above are my coloum....and i want to edit only pass/fail   and marks entry......how can do it in grid view.

View 1 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

Forms Data Controls :: Show FormView In Edit Mode With Specific Table Columns Depending On Their Genre?

Sep 8, 2010

I have a table in my database called "Profiles". This holds data on Female and Male personal characteristics.On my aspx, I have a formview in edit mode which is binded to an object data source with a GetDataByUserId Select methodwhich retrieves data from the "Profiles" Table via a DAL.The "Profiles" table has some columns which relates to females only and some just males and some are generic to both.See example below

UserId - / of Type GUID
GenreId / of Type BOOL.
Hip Size (For females)
Dress Size ( For Females)
ChestSize (For Men )
TrouserSize (For Men)
Weight ( For both )

When the User logs in , they go to an update Page which has the Formview in Edit Item Mode and contains drop down Lists whichare binded to the Users Selected Value. The DDL are in turn bound to their related table such as HIP, Dress, Chest, Trouser etc.bjectiveIf a female user logs in I just want to show them the (Hip Size) DDL and DressSizeDDL in the Edit item template of the formview and not the ChestSize DDL or TrouserSize DDL.At present the GetProfileByUserId returns all colums from the tableMy question is how do I do this and just show DDL which are relevant to the Female or Male Only. In some cases the usermay not have selected an item in the previous form so they could also be NULL.Am i on the right path by writing a Select Query that checks to see if the User is Male or Female by checking the Genre column in Profiles first.Do I also need 2 panels, 1 to hide Female DDLS and the other to Hide MaleDDLs subject to logged in user genre.

View 8 Replies

Web Forms :: GridView To Update (edit) Columns And View Table Without Edit Link?

Jan 25, 2011

I have a user requirement to hav the ability to directly edit the gridview without having to click the edit link. I was thinking of showing dropdown lists for each column-to-row so that the user can select the values for each record. Then the table will be updated accordingly (no update link).

Is this possible or do I still need the edit template and specify the item template with the dropdown list?

View 1 Replies

Web Forms :: Export Only Specific Columns Of GridView To Excel

May 27, 2012

I know how to export GridView to excel but it exports all Columns

I want to export only some columns and not all of ASP.Net GridView to excel.

View 1 Replies

Forms Data Controls :: Allow To Edit Specific Row In Gridview?

Jun 30, 2010

I want allow edit the only specific rows in gridview.

How can I achieve this.

View 4 Replies

Forms Data Controls :: How To Freeze Specific Columns In GridView

Aug 31, 2010

My question is how to freeze specifi columns of Gridview control ? Freeze means...for example say if we are freezing the first column of grid then on scrolling a horizontal scroll bar of the grid will scroll all columns other than the first column. That means the first column will be visible always without any movement. But the first column should move if we use the vertical scroll bar.

View 1 Replies

Forms Data Controls :: Hiding Gridview Columns On Edit?

Aug 10, 2010

My gridiview is mostly templated fields.

I have searched far and wide and discovered that if you hide gridview colums in the Gridview's databound event, as per the code below,then the objectdatasource binds multiple times according to the number of columns you are hiding. This is definitely the case.

[Code]....

[Code]....

View 8 Replies

Forms Data Controls :: Manage The Gridview Columns Especially At Time Of Edit The Records?

Apr 16, 2010

i use the grid view so edit & Delete the records. using

<asp:CommandField ShowEditButton="True" />
<asp:CommandField ShowDeleteButton="True" />

But due to more fields the gridview is out of the Master page.

So how can I manage the gridview columns especially at time of edit the records.

View 5 Replies

Data Controls :: Print Only Specific Columns Of GridView

May 7, 2015

I want to hide some of the columns of the gridview before printing.

For example gridview contains customerid,city and postal code.

Now i want to show city and postal code during printing.

So how can i achieve this?

View 1 Replies

C# - Retrive A Control In A Specific ROW In Edit Mode In A GridView?

Feb 25, 2011

I use asp.net 4 + c#,I have a GridView with many rows.When a User click the EDIT button in GridView I need to retrieve a Control in that specific row (now in edit mode).This Logic should work on GridEvent_RowUpdatingAt the moment my code (wrong) look inside every Row, so the Control founded is not unique and I receive an error.

// Event handler
protected void uxManageSponsoredContentsDisplayer_RowUpdating(object sender, GridViewUpdateEventArgs e)
// My code (Wrong!!!!):
foreach (GridViewRow row in uxManageSponsoredContentsDisplayer.Rows)
{
TextBox uxStartDate = (TextBox)row.FindControl("uxEffectiveStartDateInput");
}

Hope my question is clear. Solution:

TextBox uxStartDate = (TextBox)uxManageSponsoredContentsDisplayer.Rows[e.RowIndex].FindControl("uxEffectiveStartDateInput");

View 1 Replies

Data Controls :: Show Only Specific Columns And Hide Others When Sending GridView In Email Body

Jun 17, 2012

i have done sending gridview data  as excel  to mail, it is working fine

then  i had 5 columns in gridview but i want to send 4 column instead of 5 column.

protected void Button1_Click(object sender, EventArgs e)
{
fn_AttachGrid(); // here calling function to send mail gridview data as excel format
}

[Code]....

View 1 Replies

Data Controls :: GridView Columns Values Must Remain Fix During Edit

Sep 4, 2012

I didnt use bound field here.as it is simple grid view with auto generate columns. I want to make some columns Editable while some should not be editable

<asp:GridView ID="noticeDetails" runat="server" AutoGenerateEditButton="True"
onrowediting="noticeDetails_RowEditing1"
onrowupdated="noticeDetails_RowUpdated1"
onrowupdating="noticeDetails_RowUpdating1"
BorderWidth="1px" Width="100%" CellPadding="10">
</asp:GridView>

View 1 Replies

Data Controls :: Edit Option In GridView Or ListView For 450 Columns

Aug 2, 2013

I have a table which has like 450 fields, i want to add edit option to my GridView which allow user to edit the data for that row.i don't wanna write ItemTemplate field for 450 fields, is there a way to get it done automatic query using ListView or GridView whatever is good for it.

View 1 Replies

Data Controls :: Bulk Edit Update Multiple Gridview Columns

Jul 26, 2012

I have my gridview and its code is as follows

<asp:GridView ID="noticeDetails" runat="server" EmptyDataText="Currently there are no notifications." BorderColor="White"
BorderWidth="1px" AutoGenerateColumns="false" PageSize="10" Width="100%" CellPadding="10">
<Columns>
<asp:BoundField DataField="CampaignIDRange" HeaderText="CampaignIDRange"
SortExpression="CampaignIDRange" InsertVisible="False" ReadOnly="True" />

[Code] ....

I want to add a Edit button at the end of the grid view upon clicking on that button i can edit the grid columns.

Any method to resolve this query.

View 1 Replies

Forms Data Controls :: Datagrid - Displaying Specific Columns As A Dropdown

Mar 16, 2011

I have a datagrid which displays a list of user data, such as name, his or her status, age. I have created a list of rows of user data but where the column shows status for example Single, Married, i want it to create a dropdown list where i can easily change the user status by selecting it from a dropdown and clicking the update button at the top of the datagrid. The update button will update all records that have been changed not just from the dropdown. I assume the dropdownlist requires a columnbinding event but i can't find any straight forward tutorials.

View 2 Replies

Forms Data Controls :: In Page User Able To Select Gridview Columns And It Will Hide Remaining Columns

Mar 18, 2010

in asp.net page user able to select gridview Columns, and it will hide remaining columns and that selection done by check box with column list bellow is Image link , what exactly I am looking for [URL] it look bellow after selection of column done [URL]

View 1 Replies

Forms Data Controls :: Gridview Is Showing The Edit Mode After The Edit Is Done

Mar 30, 2010

I have a grid view with edit and save buttons when I click on edit it is letting me edit it and if I click on save it is lettingme save the data that I have edited.

The thing is after save is done it is showing the data in edit mode i.e <edit item template > mode I am still seeing the textboxes if I refresh the page then I am seeing it normally.

How can I stop the gridview to show edit mode after the save is done?

View 4 Replies

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

Forms Data Controls :: How To Edit GridView All Rows In Edit Mode

Dec 4, 2010

- I want to put multiple rows of a gridview into edit mode

- I have not found any easy method to accomplish this task. I found a way to programmatically put a gridview into edit mode, but in testing the code below it works for only 1 row at a time :

[Code]....

View 5 Replies

Forms Data Controls :: Master Detailed GridView Edit Selects The Wrong Row To Edit?

Mar 16, 2011

I have a page with 2 GridViews on it. The top GridView shows all the Bike Riders the bottom GridView shows all the Bike Lockers. I have set up both GridViews to be able to Edit the data. And the top GridView to Select.

When I click the Select buton on the top GridView I programically reset the DataSource for the bottom GridView to show the Locker for the Biker of the top GridView Selected.

So far everything works great. I select a Biker on the Top GridView and the Bottom GridView resets just showing one record for the bike locker.

The problem is that if I then click on the Edit button on the bottom GridView (The Bike Locker GridView) the GridView goes into the Edit Mode but it now shows all the Bike Locker records and the edit record is always the top record of the GrdView.

Here is my code Behind:

[Code]....

View 1 Replies

Forms Data Controls :: Change Edit And Cancel Link When In Edit Mode On Gridview?

Aug 18, 2010

How do I change these hyperlinks to say something other then Edit and Cancel?

View 4 Replies

DataGrid - Is Possible To Disable Sorting On Specific Columns

Sep 30, 2010

is it possible to disable sorting on specific columns? 5 out of 7 columns have to be sortable, two not sortable. The columns are created dynamically in code behind, so I think doing this with mark up is out of the question. When I say disabled, I'm hoping that the underline wont show on the column header when you mouse over it.

View 1 Replies

C# - Make A Specific Column Editable Upon Clicking Edit?

Jan 22, 2011

I have a gridview with "Edit Update Cancel" command field. When I click Edit, all the columns in the particular row becomes editable. I just need to have 2 specific columns editable. How is that made possible ? (Screen Shot Attached) [In the screen shot all 3 columns are editable, I just need the second and third to be editable]

View 2 Replies







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