Ask a Question related to ASP.NET General, Design and Development.
-
David #1
datagrid: can't get read text from a cell programmatically
In the event handler for ItemCommand, I am trying to read text of cells in
the row programmatically, but can't get it working.
//this is what I have in InitializeComponent
this.dgList.ItemCommand += new
System.Web.UI.WebControls.DataGridCommandEventHand ler(this.dgList_Command);
//this is the event handler.
private void dgList_Command(object sender, DataGridCommandEventArgs e)
{
if(e.CommandName == "View")
{
Response.Write(e.Item.Cells.Count);
Response.Write(e.Item.Cells[0].Text);
}
}
When the button is command button is pressed, I am trying to read the text
in the first cell (e.Item.Cells[0].text), but nothing is showing up. I do
see that it recognizes eItem.Cells.Count and shows the number of cells as
expected. But I do I read the contents of the cell in that row?
PS: I don't have Visual Studio 03 installed. Could this be a bug?
David Guest
-
DataGrid: How do I select and copy text for a DataGrid cell?
Hi, Do you know how do I select and copy txt from a cell inside a Flex 2 DataGrid? I don't want to use an itemRenderer. I will appreciate... -
Programmatically Change Text Property of Label in ItemTemplate in Datagrid
How do I programmatically change the text property of a label in an ItemTemplate in a datagrid? Specifically the Text property. I want to change... -
wrapping text in a datagrid cell
I have a datagrid that I am having text wrapping problems with. And the wrapping problems only happen with text containing long urls. If I set... -
--- retrieving text from a selected datagrid cell ---
this was working Dim szMsgNumber = db_grid.SelectedItem.Cells(0).Text until i changed the first column (at index 0) to a ASP:ButtonColumn... -
Can't read the content of a cell programmatically
In the event handler for ItemCommand, I am trying to read text of cells in the row programmatically, but can't get it working. //this is what I... -
David #2
Re: datagrid: can't get read text from a cell programmatically
Here is a follow up comment.
I can set the text, and read what I set, but still can't read what is
initially there. What is going on here?????
//this line shows nothing. Why? The text is there.
Response.Write(e.Item.Cells[0].Text);
//this line will set the text of the first cell to "Good"
e.Item.Cells[0].Text="Good";
//And this line outputs "Good"
Response.Write(e.Item.Cells[0].Text);
David Guest



Reply With Quote

