Hi,
When I apply a preset style, it applies the colors, and even sets the names of the graphics, but the graphics never get copied across. Where can I get the button images etc?
Thanks
Alistair
Hi Edward,
The default directories those which I listed in previous response. The ../wwwroot/.. is used at visual design, and ../ASPClientFiles/.. at run time. If your machine has several hard drives, or (local) network is used, then it is possible that application will have problems with accessing resourses in those directories.
The best and most reliable way to handle images and other resources,- is to copy them to location of project and set ImageDirectory globally in web.config or for every individual control.
Viktor Snezhko"]I guess your application does not use default image directory.
Where is the default image directory? My installations all work fine, but the images for my UltraWebMenu are in the wrong place on my development machine, and I'm not sure which is using the default?
Hi Alistair,
I guess your application does not use default image directory. So, you may
1. Look at aspx for names of images used by WebDateChooser2. Create local directory in your project like ./images/3. Go to C:\Inetpub\wwwroot\aspnet_client\infragistics\images or C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ASP.NETClientFiles\ig_common\images4. Find there required images and copy them to ./images/5. Set ImageDirectory for WebDateChooser (or do that within web.config for all Infragistics controls) to "~/images/" or if your page is on first level of project, then to "./images/"