473,769 Members | 3,844 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Edited value in datagrid not available

Hi all,

As usual, I have found a way to make the straightforward , textbook example
fail. I have a datagrid that supports editing. When I edit a row then fire
the update, the value that gets pulled from the textbox is the original
value it had before editing. It "feels" like I'm just missing some setting,
but am newbie enough to not be able to find what that might be. I'm not
requering/rebinding the grid data between beginning the edit and attempting
to access the value in the textbox. Any ideas?

TIA,

John

The grid:

<asp:datagrid
AllowCustomPagi ng="True"
AllowPaging="Tr ue"
AllowSorting="T rue"
CellPadding="2"
id="grdClientAc counts"
runat="server"
AutoGenerateCol umns="False"
OnEditCommand=" grdClientAccoun ts_Edit"
OnCancelCommand ="grdClientAcco unts_Cancel"
OnUpdateCommand ="grdClientAcco unts_Update">

<AlternatingIte mStyle ForeColor="#336 699"
BackColor="#FFF FCC"></AlternatingItem Style>
<ItemStyle ForeColor="#336 699" BackColor="#CCF FFF"></ItemStyle>
<Columns>
<asp:EditComman dColumn EditText="Edit" CancelText="Can cel"
UpdateText="Upd ate"
ItemStyle-Wrap="False" />
<asp:BoundColum n DataField="ANI"
HeaderText="Pho ne"></asp:BoundColumn >
<asp:BoundColum n DataField="ANIA ccount" HeaderText="Acc ount
Number"></asp:BoundColumn >
<asp:BoundColum n DataField="Clie ntAccount" HeaderText="Cli ent
PIN"></asp:BoundColumn >
<asp:BoundColum n DataField="Assi gned" HeaderText="Ass igned"
DataFormatStrin g="{0:MM/dd/yyyy}"></asp:BoundColumn >
<asp:BoundColum n DataField="Unas signed" HeaderText="Una ssigned"
DataFormatStrin g="{0:MM/dd/yyyy}"></asp:BoundColumn >
</Columns>
</asp:datagrid>
Abbreviated code:
public void grdClientAccoun ts_Edit(object Sender, DataGridCommand EventArgs
e)
{
grdClientAccoun ts.EditItemInde x = e.Item.ItemInde x;
BindGrid(); //Helper function that queries and binds current info.
}

public void grdClientAccoun ts_Update(objec t Sender, DataGridCommand EventArgs
e)
{
//build an update command
string ANIUpdateComman d = "UPDATE ANI SET " +
"ANI = '" + ((TextBox)e.Ite m.Cells[1].Controls[0]).Text +
"' WHERE ANI = '" + Session["ANI"] + "'";

// *snip* - the connection and related SQL handled. The value in
cmdUpdate.Comma ndText indicates
// that the value from the textbox, pulled with
"((TextBox)e.It em.Cells[1].Controls[0]).Text", is the original.

lblDebugMessage .Text = cmdUpdate.Comma ndText;
}

Nov 18 '05 #1
0 1045

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1550
by: Paul Daly (MCP) | last post by:
How do you access the value of a cell in a Windows form datagrid? I know this is how you would do it using an ASP.NET datagrid: DataGrid1.Items.Cells.Text However, "Items" is not available in the Windows Forms datagrid. Thanks, Paul
1
15751
by: Amadelle | last post by:
Hi all and thanks in advance for your help, I have a problem with capturing the changed value of a text box in a datagrid. The datagrid is populated based on a dataset and I am using template columns to show some of the columns. Few of the columns have textboxes to make them available for editing. I am trying to update the dataset all at once using one update button. Here is my code... (for simplicity I have only listed one of the...
0
1117
by: TT (Tom Tempelaere) | last post by:
Hi, How can I know if a cell in a DataGrid is being edited? Thanks, -- Tom Tempelaere.
1
1870
by: Amadelle | last post by:
Hi all and thanks in advance for your help, I have a problem with capturing the changed value of a text box in a datagrid. The datagrid is populated based on a dataset and I am using template columns to show some of the columns. Few of the columns have textboxes to make them available for editing. I am trying to update the dataset all at once using one update button. Here is my code... (for simplicity I have only listed one of the...
10
1348
by: SergioT | last post by:
Hi I wanna to create a jscript function that sets the value of a textbox into a datagrid, But the problem is How can I obtain the name of the textbox and send it to my jscript function???? The textbox is in a TemplateColumn The Idea is sent to the funcion the name of the control and then pass it to another window and then this child window must set the values of the control. But for simplicity the problem get reduced to obtain the...
9
2097
by: Coleen | last post by:
Hi All :-) I found the way to get my column sum (Thanks Cor I did it a little different, but the result is what I wanted) I used: dt_stat_report_3b.Columns.Add(New DataColumn("Sum", GetType(Double), "sum(Column_10_ld_act_125_gtr_fy_fy_hh_avg)")) where dt_stat_report_3b is my datatable, Sum is my column name and sum(Column_10_ld_act_125_gtr_fy_fy_hh_avg) is the sum of the column I needed. This Does return me the correct value in the...
5
7153
by: DanThMan | last post by:
The situation: * I have a ButtonColumn in a DataGridView. * When the user preses one of the buttons, a dialog appears. * Based on what the user selects in the dialog, data is entered programmatically into the the underlying cell (i.e., I'm setting Value property of the cell based on user input, but the user is not directly entering any data). The problem:
0
1057
by: rn5a | last post by:
How to highlight a row in a DataGrid that has just been edited? EditItemStyle-BackColor will highlight a row when the DataGrid (& a row) is in the editable mode. I want to highlight the row immediately after the row has been edited (i.e. when the DataGrid reverts back to the uneditable mode) so that users can easily notice which row they have edited just now.
9
2480
by: =?Utf-8?B?UHJhdmlu?= | last post by:
We are using .net Framework 1.1 We are having one page on which we are using this Grid component. From this page we open a popup for adding new record as well as for editing an existing record (For Edit we want to pass the ID of that particular row) And when user clicks on 'SAVE' button in popup window, those changes need to be reflected onto the parent (into the Grid). This happens by refreshing the parent page. But in that case all...
0
9422
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10206
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9984
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9851
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7403
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5293
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5441
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3949
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2811
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.