AxpDataGrid is delivered with a set of graphical images and stylesheets (CSS files).
These files are found in the Sample applications.
Copy the the stylesheets and graphic files to your application or to a globally available URL.
Where are the stylesheets and graphical buttons?
The graphical buttons can be found in the Sample application sub directory "gfx".
The stylesheets can be found in the Sample application sub directory "css".
Samples 4 and 5 shows how to change the skin. (Sample 5 also has a skin browser)
Graphical elements (Buttons)
The location of the button directory (gfx) to use on your site is set with the property
ImageDir.
The default value is "../gfx/" and will work fine if the gfx folder and the folder structure of your application is structured
as directories with a single node root and all the aspx files one directory level below the root.
Otherwise you must set the ImageDir property to a specific URL on all AxpDataGrid instances.
To set the style sheet, you must set a standard html style link in the html head part of the page.
E.g.:
<head>
....
<LINK href="http://localhost/yourpath/css/AxpStyleWindowsGrid.css" rel=stylesheet>
....
</head>
Notes.
Some of the style sheets use relative sizing notation (em). This can be changed to absolute sizing (px or pt),
but you will need to modify the size itself.
The Sample application pages have two style sheets to make sure that the relative sizing will work and
to set the general page style.
See the aspx source for more details about this.