Forms Data Controls :: Edit Multiple Rows In A Grid?

Oct 7, 2010

I have a gridview on a web form and it is working, but the users find it too slow for data entry with them having to click on the edit and update buttons. I would like to allow them to edit all the rows and then when the form's overall save button is pressed then I save the changes. I found this: [URL] which does something similar, but I don't want to use the check box to indicate which row is being edited.

I've got close based on that code, but one of the controls in the column needs to control how the rest of the columns are displayed and I can't work out how to refer to the other columns and control on the current row from some code that is called by the OnTextChanged associated with a control.

View 3 Replies


Similar Messages:

Forms Data Controls :: Delete Multiple Rows In Grid?

Jun 16, 2010

ihave grid in which i want to delete selected rows (checkbox selected)

i have written code as follow but on click on delete button it delete all.

[Code]....

View 8 Replies

Forms Data Controls :: Fetching Multiple Rows And Binding In Grid View?

Jun 8, 2010

I am developing an application in C# and Sql Server.

View 3 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 :: How To Edit Grid View (draged The Grid To The Aspx Page)

Sep 29, 2010

I have a grid view that does add, edit update and delete. ( I draged the grid to the aspx page ) it is working. I would like to have the following : once I lick on edit, I open a form inside the grid view to edit the fields. How can I do that.

View 4 Replies

Forms Data Controls :: Expand And Collapse Grid Rows + Check Box For Selecting Rows?

Mar 21, 2011

I have been handling everything in code which is not working consistently same in all scenarios.

View 1 Replies

On Edit Grid View Multiple Row Edit Validation?

Jan 29, 2010

I am using a telerik radgrid so there are around 5 columns each column edittemplate contains a control along with a required field validator and also a property called AllowMultiRowEdit is set to true so i am able to multiple rows in edit mode.

If any of the values are cleared the for multiple rows I want only those to be validated on update of that particular row.

So i implemented the Grids item data bound event find each and every validator along with the update button and set a unique validation group.

The above implementation most times but fails at some time. Is there any other way of going about this ?

View 1 Replies

Forms Data Controls :: Have A Grid View With Some Coulmns Like Name,Phone No Etc With Edit,Delete Column In Grid View?

May 27, 2010

i have a grid view with some coulmns like Name,Phone no etc with Edit,Delete column in grid view. I click a row in grid view to Edit,it goes another page where i can edit all fields .Once i update i redirect the page to gridview. I want the grid view to remain in that particular page say 4 of the grid view

View 5 Replies

C# - Put Multiple Rows Of A Gridview Into Edit Mode

Nov 30, 2010

I have the need to allow a user to "tab through" making edits on a gridview. There will be one editable column in the row data. The user should be able to hit tab and go to the next row to edit said column. 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.

reviewTransferGV.EditIndex = 0;
reviewTransferGV.Rows[0].RowState = DataControlRowState.Edit;
reviewTransferGV.EditIndex = 1;
reviewTransferGV.Rows[1].RowState = DataControlRowState.Edit;
reviewTransferGV.DataBind();

View 3 Replies

Forms Data Controls :: Which Is Better To Display Multiple Rows Of Data With Multiple Controls DataGrid Or DataRepeater

Nov 19, 2010

I have a page in which i need to show data in the form of a grid. Each row in the grid is made up of 2 sub-rows, the first sub-row consists of a dropdown, a textbox & a textarea. Whatever is entered in these controls should be displayed in the second sub-row in the form of labels at runtime (i.e. using javascripts)

There can be multiple rows like this. The grid would have a max of 30 row, not more than that. create this which one would be better, in terms of performance & complexity, a GridView or a DataRepeater?

View 2 Replies

Forms Data Controls :: Edit Gridview Record On 2 Rows?

Aug 27, 2010

Is that possible to edit a record within a gridview on 2 rows to make it look better when editing?

Like I have 8 columns in my gridview.

I wish to have 4 columns on row one and the 4 remaining columns on row 2.

View 11 Replies

Forms Data Controls :: How To Edit The Grid Content From JavaScript

May 17, 2010

I would like to know if it is possible to force the update of a gridview from a javascript function..

By now, I'm doing a XMLHttpRequest to obtain some values and processing them in javascript..

But now I need to display these values in a grid, too.. And I was thinkin in create a gridview filled in server side with an objectdatasource, and forcing the refresh of the grid from javascript.

Is there any way to do this? Or maybe would be better to edit the grid content from javascript?

View 2 Replies

Forms Data Controls :: Unable To Edit The Grid View

Mar 24, 2010

When I click on edit button I am expecting it to change like a text box and let me edit the content. But it is not happening. Can you see my code and let me know What I am missing?

<asp:GridView ID="gvSearch" runat="server" AutoGenerateColumns="False" AllowPaging="True"
AllowSorting="true" Width="650px" PageSize="20" OnRowCommand="gvSearch_RowCommand" OnRowDataBound="gvSearch_RowDataBound"
OnRowEditing="gvSearch_RowEditing" OnRowUpdating="gvSearch_RowUpdating"
>
<Columns>
<asp:TemplateField HeaderText="User Id" SortExpression="User Id">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="False" HorizontalAlign="Left" />
<ItemTemplate>
<asp:Label ID="lblusrId" runat="server" Text='<%# Eval("UserId")%> '></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="First Name" SortExpression="FirstName">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="False" HorizontalAlign="Left" />
<ItemTemplate>
<asp:Label ID="lblFname" runat="server" Text='<%# Eval("FirstName")%> '></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Last Name" SortExpression="LastName">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="False" HorizontalAlign="Left" />
<ItemTemplate>
<asp:Label ID="lblLname" runat="server" Text='<%# Eval("LastName")%>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="MiddleName" SortExpression="CreatedOn">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="False" HorizontalAlign="Left" />
<ItemTemplate>
<asp:Label ID="lblMname" runat="server" Text='<%# Eval("MiddleName")%>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Employee Id" SortExpression="EmployeeId">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="False" HorizontalAlign="Left" />
<ItemTemplate>
<asp:Label ID="lblEmpId" runat="server" Text='<%# Eval("EmployeeId")%>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="User Status" SortExpression="NetId">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="False" HorizontalAlign="Left" />
<ItemTemplate>
<asp:Label ID="lblUsrStatus" runat="server" Text='<%# Eval("UserStatus")%>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="View User Details" SortExpression="View">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="True" HorizontalAlign="Left" />
<ItemTemplate>
<asp:LinkButton ID="lbView" Text="View Details" runat="server" CommandName="View" CommandArgument='<%#Eval("FirstName")+";"+Eval("LastName")+";"+Eval("UserId")%>' ></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="View User Details" SortExpression="View">
<HeaderStyle Wrap="False" Font-Bold="True" HorizontalAlign="Center"
VerticalAlign="Top" />
<ItemStyle Wrap="True" HorizontalAlign="Left" />
<ItemTemplate>
<asp:LinkButton ID="lbledit" Text="Edit" runat="server" CommandName="Edit" CommandArgument='<%#Eval("FirstName")+";"+Eval("LastName")+";"+Eval("UserId")%>' ></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
protected void gvSearch_RowCommand(object source, GridViewCommandEventArgs e)
{
if (e.CommandName == "View")
{
string arg = Convert.ToString(e.CommandArgument);
// Response.Redirect("~/CFEmpDetails.aspx?arg=" + arg);
}
if (e.CommandName == "Edit")
{
}
}
protected void gvSearch_RowDataBound(Object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
}
}
protected void gvSearch_RowEditing(object sender, GridViewEditEventArgs e)
{
}
protected void gvSearch_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
}

View 6 Replies

Forms Data Controls :: Grid View Edit Formatting?

Mar 26, 2010

I have a gridview, and i have set all the properties to this...it all works.

I then created a AutoGenerateEditButton.....but I need to know how to set the below for the Edit button.

<HeaderStyle BackColor="White" BorderColor="#6778B2" BorderStyle="Solid"
BorderWidth="1px" Font-Bold="True" Font-Names="Tahoma,Arial,sans-serif;"
Font-Size="99%" Width="0px" />
<ItemStyle BorderColor="#6778B2" BorderStyle="Solid" BorderWidth="1px"
Font-Names="Tahoma,Arial,sans-serif;" Font-Size="99%" HorizontalAlign="Left" />

View 2 Replies

Forms Data Controls :: How To Edit Nested Grid View

Oct 30, 2010

I have Parent grid view (gvServiceDetail) and child grid view (Gridview2) in Parent grid view. Child grid view has 3 bound column. In Parent grid view I am binding Partnername,Area,Mobile and in child grid I am binding services against partnerid.

Now I want to edit service details row in child grid view.

[Code]....

[Code]....

View 2 Replies

Forms Data Controls :: How To Edit The Values In Grid View

May 14, 2010

I want edit the perticular row which i selected(clicked),

when ever i click on edit button which in Gridview ,all the values which relavant information should go in to Text boxes.

here is my code ASPX:

<asp:GridView ID="GridView1" runat="server"

View 7 Replies

Forms Data Controls :: Empty Cells On GridView With 10 Rows To Edit?

Mar 25, 2011

I am using a GridView on my ASP.NET form.

Would it be possible to have a GridView with 10 empty rows, having 5 columns.

Can I define the number of GridView Rows I could Edit.

i would then have an Update Button, which would update all the rows to the database.

View 2 Replies

Forms Data Controls :: Can't Get The Blank Grid With 5 Rows To Show Up

Jun 25, 2010

I found code [URL] that allows multiple-row inserts, and tried to convert it to vb.net. I can't get the blank grid with 5 rows to show up -- for some reason the datasource won't bind.

[Code]....

Code gridview:

[Code]....

View 4 Replies

Forms Data Controls :: Collapse And Expand Rows In Grid?

Jan 25, 2011

I want to populate the search results in grid. The results should be grouped based on condition. I mean if i am searching for name called Osama laden, all the names containing Osama be grouped(+) and Laden as well. I should get the count side to the (+) button. When i click on + button the results should expand and when i click on(-) the results should collapse.

View 2 Replies

Forms Data Controls :: Count The No Of Rows In Grid View?

Nov 9, 2010

I am having a grid view

[Code]....

now depending on the text of lblstatus i want to count the no of rows in the gridview....

i m binding the lblstatus with two values 1 and 0...

now i want to count the no of rows in gridview whose lblstatus is 1...

View 34 Replies

Forms Data Controls :: Selecting Rows From A Grid View?

Oct 17, 2010

How do you select value from a gridview? I would like to pass values of rows selected to a query with the code below, but the grid seems to be frozen and I can't find a property for the grid that allows me to select rows.

Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles GridView1.SelectedIndexChanged
Dim DB As New AOP29DBDataContext
If GridView1.SelectedValue = "Receiver" Then
Dim Query = From p In DB.Receivers
Select p
GridView2.DataSource = Query
GridView2.DataBind()
End If
If GridView1.SelectedValue = "Donor" Then
Dim Query = From p In DB.Donors
Select p
GridView2.DataSource = Query
GridView2.DataBind()
End If
End Sub

View 4 Replies

Forms Data Controls :: How To Retain Old Rows In Grid View

Mar 22, 2011

am using a stored proc: that uses text of a textbox as input parmeter and returns single result each time ,am binding grid view to this stored proc:,now wat happens is the data gets displyed in grid view and whn i give new input in text box ,the old data in grid view is lost and new data comes...now wat are the options i have to keep the old data in grid view?/.

View 8 Replies

Forms Data Controls :: Number Of Displayed Rows In A Grid?

May 30, 2010

How to control the number of displayed rows in a grid? Which property to change?

View 2 Replies

Forms Data Controls :: Cancelling A Grid View Edit Mode

Mar 23, 2010

In a page, I have a tree view to the left and grid view to the right side. When any node in treeview is selected, the grid view is binded with files which the selected tree view node contains. the grid view has a row editing event for renaming the file name.

When I click on rename of file in the gridview,and without updating or cancelling it i am selecting another node in the treeview.........the details of the newly selected node are binded to the gridview. But, they are in the same edit mode with update and cancel options.

View 5 Replies

Forms Data Controls :: Show Global Resource In Grid And Edit

Jul 9, 2010

how i can show Global resource file content (name , value , comment ) in grid view?and how i can Update(edit) it?

View 1 Replies







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