Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

need help with getting selected row values in a GridView

Status
Not open for further replies.

tperri

Programmer
Apr 8, 2006
728
US
Just started to mess around with these -

I have a bunch of TemplateColumns in my table, not bound columns, and when I select a row, I need to extract the value out of Cell[2] - but when I try, I'm getting Empty string


Code:
?myGridView.Rows[0].Cells[0].Text
""
I'm supposing I'm having this difficulty because these aren't bound columns and I'm doing some manual text formatting on the data in them. How do I go about getting their values if this is the case?

Thanks for the help in advance
 
how are you filling the Grid and at what point are you trying to access it tperri?



____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
filling with a SqlDataSource -

I'm not sure what the best time to access it is - I want to when the Row is selected with a select button. OnRowCommand on OnSelectedChanged works for me (or anything else really) - I just wanna be able to grab that text.

 
hmmm...I'm guessing you have the enable selection checked so you have the select links. In that case you would return an empty string if you did
Code:
myGridView.Rows[0].Cells[0].Text
sense I do not believe you can select the "select" text.

I'm guessing you may want
Code:
myGridView.Rows[0].Cells[1].Text

Then again it is late ;-) I could be dreaming again


____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
I am getting an empty string for all cells in my rows. :(
 
Are you hiding the columns at all by using the visibilty value? Sorry, I'm running low on my knowledge at this point.


____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
Nope. I was thinking maybe I need to put my values into a label and then get refernce to that label and extract it that way
 
as long as the values are showing in the grid there should be no reason you can't refer to them. Kind seems like it would defeat the purpose of the grid

If you do something in the RowDataBound event can you see the rows loading at all?

something like
Code:
    protected void GridView1_RowDataBound(object sender, EventArgs e)
    {
        Response.Write(myGridView.Rows.Count);
    }


____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
yes the rows are loading - i see my data just fine in the grid
 
edit
GridView1 --> myGridView


____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
So if you check Enable selection in the smart tag of the grid add this
Code:
    protected void myGridView_SelectedIndexChanged(object sender, EventArgs e)
    {
Response.Write(myGridView.Rows[myGridView.SelectedIndex].Cells[2].Text);
    }
to your code and then the
Code:
OnSelectedIndexChanged="myGridView_SelectedIndexChanged"
to the grid tag along with
Code:
%@ Page Language="C#" EnableEventValidation="false" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" debug="true" %>
renaming the page as needed.

what shows above the grid when you click a select link next to a row in the grid.


____________ signature below ______________
General FAQ faq333-2924
5 steps to asking a question faq333-3811
 
Can you paste the GridView details?


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top