you would need to write the appropriate javascript to do this and embed it
in the cell in the codebehind so that it can fire client side. Consider this
in the itemdatabound event handler
e.item.cells[0].attributes.add("onmouseover","callFunkyDHTMLRouti ne");
your callFunkyDHTMLRoutine would then need to do the heavy lifting
--
Regards,
Alvin Bruney
[ASP.NET MVP
http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here...
http://tinyurl.com/27cok
"Paul Hale" <> wrote in message
news: om...
> Hi,
>
> I have a datagrid that has a particular cell that holds an HTML table
> that in turn holds 10 text boxes. I would like (if possible) for when
> the users mouse rolls over this particular cell for the cell to expand
> displaying the HTML table and the text boxes it contains.
>
> It would be kind of a flashy dynamic Master\Detail item embedded
> within my datagrid.
>
> Anybody got any ideas?