How can I get a rounded rectangle graphic to span across all columns within an ASP.NET GridView header row ?
I currently have created a rounded rectangular graphic and have used CSS to add it to the gridview header background as such:-
.datagrid th
{
background-image: url('../images/rounded_graphic.jpg');
}
… but this just displays it in each column of the header rather than spanning the whole header row.
Any ideas ?
Your generated datagrid would have to have no spacing between columns.
Thats the rough idea atleast 🙂