R
rodchar
hey all,
// Show the Select Button
CommandField selectcol = new CommandField();
selectcol.ShowSelectButton = true;
selectcol.ItemStyle.CssClass = "gvSelect";
selectcol.ControlStyle.CssClass = "gvSelect";
GridView1.Columns.Add(selectcol);
I added the following snippet to my code-behind and I'm trying to get the
Select Button's font to be white and it's not working for some reason. I have
other css attributes working on the select button like the
text-decoration:none is working. can someone please explain possible issues?
thanks,
rodchar
// Show the Select Button
CommandField selectcol = new CommandField();
selectcol.ShowSelectButton = true;
selectcol.ItemStyle.CssClass = "gvSelect";
selectcol.ControlStyle.CssClass = "gvSelect";
GridView1.Columns.Add(selectcol);
I added the following snippet to my code-behind and I'm trying to get the
Select Button's font to be white and it's not working for some reason. I have
other css attributes working on the select button like the
text-decoration:none is working. can someone please explain possible issues?
thanks,
rodchar