I'm trying to use AJAX to accomplish something on a site i'm working on. I'm using the AjaxControlToolkit. I need to make a HoverMenu on a DataGrid (using this instead of GridView for a lot of reasons)
When a user hovers over a row in the DataGrid, the hovermenu needs to come up and show the viewer a link and a piece of data from the database in the panel that will show. This panel needs to be right next to the datagrid row.
I'm really at a loss of how this can work effictively. i'm not sure what is going on with it.
right now i'm not populating the datagrid with real stuff, so here is what i have for creating the datagrid.
Can someone please help. i need this ASAP
David Kuhn
------------------
When a user hovers over a row in the DataGrid, the hovermenu needs to come up and show the viewer a link and a piece of data from the database in the panel that will show. This panel needs to be right next to the datagrid row.
I'm really at a loss of how this can work effictively. i'm not sure what is going on with it.
right now i'm not populating the datagrid with real stuff, so here is what i have for creating the datagrid.
Code:
dtTemp.Columns.Add("IDNum");
dtTemp.Columns.Add("Number2");
for (int i = 0; i < 10; i++)
{
DataRow dtRow = dtTemp.NewRow();
dtRow["IDNum"] = i.ToString();
dtRow["Number2"] = ((int)(i * 2)).ToString();
dtTemp.Rows.Add(dtRow);
}
Can someone please help. i need this ASAP
David Kuhn
------------------