All,
I'm trying to change my SortAsc and SortDesc icons on my grid, and I'm not getting any noticeable change. I create the grid programmatically, so I use the method listed in the documentation. I wired up my ColumnCreated event to the following function:
The result:
Nothing. The default arrows (gray/black up and down arrows) are used no matter what I put in there. My "Grid" directory sits on the same level as the .cs file this function is in. I've tried adding / and ../ in front of the url names, all to no avail.
Any help would be GREATLY appreciated.
I'm trying to change my SortAsc and SortDesc icons on my grid, and I'm not getting any noticeable change. I create the grid programmatically, so I use the method listed in the documentation. I wired up my ColumnCreated event to the following function:
protected
void
rgrid_ColumnCreated(
object
source, GridColumnCreatedEventArgs e)
{
e.Column.SortAscImageUrl =
"Grid/Skins/SortAsc.gif"
;
e.Column.SortDescImageUrl =
"Grid/Skins/SortDesc.gif"
;
}
The result:
Nothing. The default arrows (gray/black up and down arrows) are used no matter what I put in there. My "Grid" directory sits on the same level as the .cs file this function is in. I've tried adding / and ../ in front of the url names, all to no avail.
Any help would be GREATLY appreciated.