ISPrincess
Programmer
I have a datagrid that will display about 5 columns with One row each in an ItemTemplate.
Here is a sample of the first column:
I have a + sign that when clicked, I would like to expand that row to show more information. Such as:
This is not a parent/child thing. I just need to save real estate until a user needs to see alittle more data by row.
I saw an example of this while searching the web, but cannot find it again.
Later, I will need to nest a child grid inside this parent grid also, but that is a seperate issue, Which I am also having a very difficult time with.
Any help, especially on the first issue (show more information) would be greaty appreciated!
PH
I was walking home one night and a guy hammering on a roof called me a paranoid little weirdo.
In morse code.
-Emo Phillips
Here is a sample of the first column:
Code:
<ItemTemplate>
<% databinder.eval(container.dataitem "InfoField") %>
</ItemTemplate>
I have a + sign that when clicked, I would like to expand that row to show more information. Such as:
Code:
<ItemTemplate>
<% databinder.eval(container.dataitem "InfoField") %>
<BR>
<% databinder.eval(container.dataitem "MoreInfo") %>
</ItemTemplate>
This is not a parent/child thing. I just need to save real estate until a user needs to see alittle more data by row.
I saw an example of this while searching the web, but cannot find it again.
Later, I will need to nest a child grid inside this parent grid also, but that is a seperate issue, Which I am also having a very difficult time with.
Any help, especially on the first issue (show more information) would be greaty appreciated!
PH
I was walking home one night and a guy hammering on a roof called me a paranoid little weirdo.
In morse code.
-Emo Phillips