473,788 Members | 2,754 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

get cell value within gridview

I have a gridview that has a button in the last cell of each row. I want to get the text from cell 1 for that row the button was clicked on.

So if my gridview looks like this:

N-12 BMW [select]
N-35 Mercedes [select]

if my user clicks row 2, I want to see Mercedes, How can I do that?

I have a buttonClick event for my select button, I'm trying to pull the values using the DataKeyName, but I keep getting 'object reference not set to an instance of an object.

here is what i'm trying

select_Click()
{
string make = grid1.SelectedD ataKey.Values["CarMake"].toString();

}

any suggestions on how I can get the cell 1 text for the selected row within my Select_Click()?
Oct 18 '07
14 91372
1) Does the code jump into the correct method?
Yes

2) Assuming it does, in the Immediate window write grid1 and press Enter -
do you see the properties of your GridView;
yes, but these properties are set to the following, even though I
selected a row via the button
SelectedDataKey : null
SelectedIndex: -1
SelectedRow: null
SelectedRowStyl e: {System.Web.UI. WebControls.Tab leItemStyle}
SelectedValue: null
3) Assuming you do, in the Immediate window write grid1.SelectedR ow and
press Enter - what do you see...? null is displayed in the windows

"Mark Rae [MVP]" <ma**@markNOSPA Mrae.netwrote in message
news:ez******** ******@TK2MSFTN GP02.phx.gbl...
"Mike" <Mi**@community .nospam.comwrot e in message
news:uh******** ******@TK2MSFTN GP06.phx.gbl...
>I've tried that to and get;

Object reference not set to an instance of an object

Hmm - OK...

Set a breakpoint on the first line of the click even and run the code
again

1) Does the code jump into the correct method?

2) Assuming it does, in the Immediate window write grid1 and press Enter -
do you see the properties of your GridView?

3) Assuming you do, in the Immediate window write grid1.SelectedR ow and
press Enter - what do you see...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Oct 18 '07 #11
"Mike" <Mi**@community .nospam.comwrot e in message
news:e7******** ******@TK2MSFTN GP06.phx.gbl...
>1) Does the code jump into the correct method?
Yes
OK.
>2) Assuming it does, in the Immediate window write grid1 and press
Enter - do you see the properties of your GridView?
SelectedRow: null
Aha - well there's your problem right there...

Whatever you are doing behind the click of the Buttons in the GridView's
rows, it's not actually marking the row the Button is on as Selected...

Fix that, and everything else should work...

Alternately, wire up a SelectedIndexCh anged event to the GridView

protected void grid1_SelectedI ndexChanged(Obj ect sender, EventArgs e)
{
GridViewRow objRow = grid1.SelectedR ow;
}

Does that at least tell you which row is selected...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Oct 18 '07 #12
Just put a test

if ( SelectedIndex < 0 )
return;
-----Original Message-----
From: Mike [mailto:Mi**@com munity.nospam.c om]
Posted At: Friday, 19 October 2007 3:49 AM
Posted To: microsoft.publi c.dotnet.framew ork.aspnet
Conversation: get cell value within gridview
Subject: Re: get cell value within gridview

1) Does the code jump into the correct method?
Yes

2) Assuming it does, in the Immediate window write grid1 and press
Enter -
do you see the properties of your GridView;
yes, but these properties are set to the following, even
though
I
selected a row via the button
SelectedDataKey : null
SelectedIndex: -1
SelectedRow: null
SelectedRowStyl e:
{System.Web.UI. WebControls.Tab leItemStyle}
SelectedValue: null
3) Assuming you do, in the Immediate window write grid1.SelectedR ow
and
press Enter - what do you see...? null is displayed in the windows

"Mark Rae [MVP]" <ma**@markNOSPA Mrae.netwrote in message
news:ez******** ******@TK2MSFTN GP02.phx.gbl...
"Mike" <Mi**@community .nospam.comwrot e in message
news:uh******** ******@TK2MSFTN GP06.phx.gbl...
I've tried that to and get;

Object reference not set to an instance of an object
Hmm - OK...

Set a breakpoint on the first line of the click even and run the
code
again

1) Does the code jump into the correct method?

2) Assuming it does, in the Immediate window write grid1 and press
Enter -
do you see the properties of your GridView?

3) Assuming you do, in the Immediate window write grid1.SelectedR ow
and
press Enter - what do you see...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Oct 18 '07 #13
"Ian Semmel" <an****@rocketc omp.com.auwrote in message
news:A8A047B34A 504EA5A7DE7F646 DBB42AE@DIMITY. ..
Just put a test

if ( SelectedIndex < 0 )
return;
How will that help...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Oct 18 '07 #14
I've just noticed (after about an hour on this), the developer that created
this page is using a template field that has a imgButton in it. So he has
the image Button calling the Sales_Click() method. he is currently passing
the ID of the field using the CommandArgument .

So I guess I have a new issue then with this. Is there a way to either pass
2 parameters in the command argument or is there a way to get the value from
a particular cell within the grid when the user clicks the imgButton on a
row?


"Mark Rae [MVP]" <ma**@markNOSPA Mrae.netwrote in message
news:em******** ******@TK2MSFTN GP06.phx.gbl...
"Mike" <Mi**@community .nospam.comwrot e in message
news:e7******** ******@TK2MSFTN GP06.phx.gbl...
>>1) Does the code jump into the correct method?
Yes

OK.
>>2) Assuming it does, in the Immediate window write grid1 and press
Enter - do you see the properties of your GridView?
SelectedRow: null

Aha - well there's your problem right there...

Whatever you are doing behind the click of the Buttons in the GridView's
rows, it's not actually marking the row the Button is on as Selected...

Fix that, and everything else should work...

Alternately, wire up a SelectedIndexCh anged event to the GridView

protected void grid1_SelectedI ndexChanged(Obj ect sender, EventArgs e)
{
GridViewRow objRow = grid1.SelectedR ow;
}

Does that at least tell you which row is selected...?
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Oct 18 '07 #15

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

Similar topics

1
9389
by: Jon S via DotNetMonster.com | last post by:
HI all, I'm returning a dataset to a gridview control. When the gridview asp.net control is populated from the returning dataset some of the cells remain empty. This is expected as some data in the dataset is empty. The cells that are empty, in the gridview control, I would like to have the value of 0 (zero) inserted. Is there a default cell value property or something similar for the asp.net gridview control. So if no data is...
0
1596
by: SDRoy | last post by:
Hi Can someone help me to figure out how to get the editable textbox value from GridView in my code-behind ? I am using the code something like- GridView2.Rows.Cells.Text.Trim(). But when I click the update, I don't get the value. Is there another way of doing this. I want to Read the GridView cell from my code-behind and pass that to a update method that I have written in the .cs file. -- Thanks,
3
3311
by: Bill Gower | last post by:
I have an cell which contains a field member which is filled with String.Empty. When I retrieve the value in the cell with Cells.Text.ToString() and try to compare it to String.Empty, I can't because it contains "&nbsp". I really don't want to compare the value to that so how can I retrieve an empty cell so that it is String.Empty. Bill
27
109404
by: geniet | last post by:
Hello all of you, I have some problem in setting cells values (or fromat or...) in my Excel spreadsheet using a VB statement like within my Module: Range("C1").Value = 20 I have this in a function. If I am in debug mode and have a breakpoint at this line, I can see when hovering my mouse over "Range("C1").Value" the actual value in that cell (in my case 30), but when I want to step to the next statement, the VB programs ends (due to some...
1
2190
by: Vyas111111 | last post by:
Hello All, How can i get the value of a gridview cell outside any GridView event
2
7614
by: rameshgohil | last post by:
I am using grid view and a button column in it using <itemTemplate> but I am not able to rerive cell value of a selected row from grid view. I have tried the following to methods in Row_command event of gridview but it gives Null reference exception error while clicking the button in button column of grid view : int index = gdvOdetails.SelectedIndex; object oid = (object)gdvOdetails.SelectedDataKey.Values; txtMsg.Text =...
4
5864
by: foolmelon | last post by:
Before AJAX, we were able to focus a cell in a gridview during a fullpage postback. After putting the gridview inside an UpdatePanel, we cannot focus a cell in this gridview anymore. Does anybody know if it is possible to make such focus? Thanks! Bill
2
14729
by: minhtran | last post by:
HI all Please, anyone has any idea how to get value from gridview in ASP.NET using VB.Net. I use C# as a code Gridview1.SelectedRow.Cell(i).Text , it works but not on VB.NET. If any one can help me please. Thank you very much in advance
3
5087
by: bharathi228 | last post by:
hi, iam doing one asp.net application in gridview i have 3 columns. the first two column values are coming from database. the third column is template field.here i have one radiobuttonlist control.i have two options in radiobuttonlist.
0
9498
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
10366
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...
0
10175
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7518
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
6750
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
5399
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...
1
4070
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
2
3675
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
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.