473,769 Members | 2,078 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problem Retrieving Cell Value From Datagrid

Hi All

Using Delphi 2006 developer - C# Project

I have the following 2 event handlers for the datagrid - see botton of
page
Both events will fire off correctly but i have a problem collecting the
correct data in teh Update event - I have noted the problem in the
event handler

protected void Livery_DeleteCo mmand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
string LLivery = e.Item.Cells[1].Text;
string LLeadTime = e.Item.Cells[2].Text;
int LRow = e.Item.ItemInde x;

// If I step through this I can see the values of the cells of the
row highlighted when I press the delete button
}

protected void Livery_UpdateCo mmand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
string LLivery = e.Item.Cells[1].Text;
string LLeadTime = e.Item.Cells[2].Text;
int LRow = e.Item.ItemInde x;

// If I step through this the values of e.Item.Cells[1].Text and
// e.Item.Cells[2].Text are blank. I could understand if the
// value contained the old (pre-update) values or the
// new (post-update) values but the fields are blank ?????
// e.Item.ItemInde x is showing the correct row index
}

Can anyone advise me why this is so and if so how do I rectify the
situation.

Many thanks in advance for assistance offered

Iain

<asp:datagrid id="Livery" runat="server"
allowsorting="T rue"
EnableViewState ="true"
itemstyle-verticalalign=" top"
headerstyle-font-bold="true"
headerstyle-forecolor="whit e"
headerstyle-backcolor="blac k"
autogeneratecol umns="false" font-size="8pt"
cellpadding="5"
width="92%"
onsortcommand=" Livery_SortComm and"
ondeletecommand ="Livery_Delete Command"
oneditcommand=" Livery_EditComm and"
onupdatecommand ="Livery_Update Command"
oncancelcommand ="Livery_Cancel Command">
<EditItemStyl e borderstyle="Da shed"
bordercolor="#0 000C0"
backcolor="#FFF FC0">
</EditItemStyle>
<ItemStyle verticalalign=" Top">
</ItemStyle>
<HeaderStyle font-bold="True"
forecolor="Whit e"
backcolor="Blac k">
</HeaderStyle>
<Columns>
<ASP:EditComman dColumn
buttontype="Pus hButton"
updatetext="Upd ate"
headertext="Edi t"
canceltext="Can cel"
edittext="Edit" >
</ASP:EditCommand Column>
<ASP:BoundColum n datafield="LIVN AME"
headertext="Liv ery Name">
</ASP:BoundColumn >
<ASP:BoundColum n datafield="LEAD TIME"
headertext="Lea d Time">
</ASP:BoundColumn >
<ASP:ButtonColu mn text="Delete"
buttontype="Pus hButton"
headertext="Del ete"
commandname="De lete">
</ASP:ButtonColum n>
</Columns>
</asp:datagrid>

Jan 20 '07 #1
2 1987
hi iain,
you probably have to dig in to the controls property of the cell in
question.
Control.Text only works if there is plain text with no server controls
inside the control.
in your case, i presume the edit mode of the datagrid has rendered some
textboxes instead.
you probably want something like this:

// if the textbox is the first control in the cell in edit mode...
string LLivery = (e.Item.Cells[1].Controls[0] as TextBox).Text;

// or you can use FindControl()
string LLivery = (e.Item.Cells[1].FindControl("t xtLivery") as TextBox).Text;

hope this does it for you
tim

"Iain" <Em************ **@gmail.comwro te in message
news:11******** **************@ q2g2000cwa.goog legroups.com...
Hi All

Using Delphi 2006 developer - C# Project

I have the following 2 event handlers for the datagrid - see botton of
page
Both events will fire off correctly but i have a problem collecting the
correct data in teh Update event - I have noted the problem in the
event handler

protected void Livery_DeleteCo mmand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
string LLivery = e.Item.Cells[1].Text;
string LLeadTime = e.Item.Cells[2].Text;
int LRow = e.Item.ItemInde x;

// If I step through this I can see the values of the cells of the
row highlighted when I press the delete button
}

protected void Livery_UpdateCo mmand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
string LLivery = e.Item.Cells[1].Text;
string LLeadTime = e.Item.Cells[2].Text;
int LRow = e.Item.ItemInde x;

// If I step through this the values of e.Item.Cells[1].Text and
// e.Item.Cells[2].Text are blank. I could understand if the
// value contained the old (pre-update) values or the
// new (post-update) values but the fields are blank ?????
// e.Item.ItemInde x is showing the correct row index
}

Can anyone advise me why this is so and if so how do I rectify the
situation.

Many thanks in advance for assistance offered

Iain

<asp:datagrid id="Livery" runat="server"
allowsorting="T rue"
EnableViewState ="true"
itemstyle-verticalalign=" top"
headerstyle-font-bold="true"
headerstyle-forecolor="whit e"
headerstyle-backcolor="blac k"
autogeneratecol umns="false" font-size="8pt"
cellpadding="5"
width="92%"
onsortcommand=" Livery_SortComm and"
ondeletecommand ="Livery_Delete Command"
oneditcommand=" Livery_EditComm and"
onupdatecommand ="Livery_Update Command"
oncancelcommand ="Livery_Cancel Command">
<EditItemStyl e borderstyle="Da shed"
bordercolor="#0 000C0"
backcolor="#FFF FC0">
</EditItemStyle>
<ItemStyle verticalalign=" Top">
</ItemStyle>
<HeaderStyle font-bold="True"
forecolor="Whit e"
backcolor="Blac k">
</HeaderStyle>
<Columns>
<ASP:EditComman dColumn
buttontype="Pus hButton"
updatetext="Upd ate"
headertext="Edi t"
canceltext="Can cel"
edittext="Edit" >
</ASP:EditCommand Column>
<ASP:BoundColum n datafield="LIVN AME"
headertext="Liv ery Name">
</ASP:BoundColumn >
<ASP:BoundColum n datafield="LEAD TIME"
headertext="Lea d Time">
</ASP:BoundColumn >
<ASP:ButtonColu mn text="Delete"
buttontype="Pus hButton"
headertext="Del ete"
commandname="De lete">
</ASP:ButtonColum n>
</Columns>
</asp:datagrid>
Jan 20 '07 #2
Hi Tim

Thanks for your assistance.
The string LLivery = (e.Item.Cells[1].Controls[0] as TextBox).Text;
appears to work well.
Much appreciated

Iain

Jan 22 '07 #3

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

Similar topics

3
2037
by: Billy Jacobs | last post by:
I have created a DataGridColumnDatePicker Component so that I can put a datetimepicker control in my datagrid. It almost works. When I put my mouse in the cell it changes to a datetimepicker control. I can then select a date which displays in the cell. When I leave the cell however I get the following error:
2
9926
by: Chris Plowman | last post by:
Hi all, I was wondering if anyone can help me with a really annoying problem I have been having. I made a derived datagrid class that will select the row when a user clicks anywhere on a cell (multi-select without modifier keys). I got that working fine, but I also wanted to keep rows selected after a sort, which I do by storing the row's id in an arraylist. The idea was to do the sort and then go back and re-select the rows with that...
9
424
by: Morten | last post by:
Hi! I have a problem displaying some values in a datagrid. I have an array that consists of a number of objects. Each object has 2 properties: Name and a list of web addresses. (e.g: Name: "Test", URLs: {"address1", "adress2"...}). How can I implement this using Visual Studio? I'd also like to be able to edit the properties so I'm hoping to be able to use the standard routines that are available in the datagrid.
3
1616
by: Sunil Sabir | last post by:
Dear All, I have a datagrid which displays the column of Names of doctors.When I use e.item.cell(5).Text. I see the name of two doctors instead of one.In the database the doctors name are: James,Wilson Richard,Clark
7
3344
by: Girish | last post by:
OK.. phew. Playing with data grids for the past few days has been fun and a huge learning experience.. My problem. I have a requirement to display a gird with a gird. Within the embedded grid, theres a requirement to show a drop down menu list (this is a control I downloaded online) in one of the columns. For the purposes of this question, Ive implemented the drop down menu as a drop down list instead. Ive got all this working at this...
3
3751
by: Maria Anthonsen | last post by:
I'm using HitTest to get a value from the cells into a textbox. I have put the HitTest code into the MouseDown-event, and everything is working except one thing. When I start the program the value in the first column/row is highlighted and the HitTest doesn't retrieve a value if I click on that cell. Is there a way to get a datagrid to not highlight a cell - or are there any other ways to solve this? HitTest-code (simplified) Dim...
3
1937
by: JJ | last post by:
I have a datagrid on my form that displays its data from various tables within a specified dataset. That all works correclty. However, when one cell is selected prior to changed the displayed table, the cell from the old table remains visible, infront of the new tables data...?! I have tried 'datagrid.refresh', 'DataGrid1.DataSource = nothing' and all sort of tricks to try and update the display, but to no avail. My code looks like...
9
2728
by: rn5a | last post by:
A Form has a DataGrid which displays records from a SQL Server 2005 DB table. Users can modify the records using this DataGrid for which I am using EditCommandColumn in the DataGrid. This is the code: <script runat="server"> Dim sqlConn As New SqlConnection(".....") Sub Page_Load(ByVal obj As Object, ByVal ea As EventArgs) If Not (Page.IsPostBack) Then FillDataGrid()
1
2180
by: Ahmed Yasser | last post by:
Hi all, i have a problem with the datagridview sorting, the problem is a bit complicated so i hope i can describe in the following steps: 1. i have a datagridview with two columns (LoginName,UserName) 2. the datagridview sorting is set to automatic, so when i click on the column header is sorts well. 3. i put in an event handler for the CellEndEdit Event, so whenever the user of the program changes the content of a cell in the LoginName...
0
9579
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
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
10208
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
9987
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
8867
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7404
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
6662
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5444
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2812
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.