When I drop a webdatepicker on a webpage, I don't see the spin buttons (seeing placeholders instead) and it's missing the default styles? I'm using 2010 Vol.1 controls.
Am I missing any additional settings?
Thanks,
Ramesh
Hi Ramesh,
Probably webdatepicker can not find resources. By default the resources should be located at local to project ig_res/Default directory. Directory should contain css files and images. That default location can be changed. By default those settings are defined in web.config by something like below
<infragistics.web styleSetName="Default" styleSetPath="~/ig_res" />
I suggest you to look at source of generated html, find <img> objects used for spin buttons and look at their src. Files referenced by that should be accessible from server. You also may check if <link> with css files point to correct location (available from server).You also may use debuger and other tools, like "Developer Tools" in IE8 and inspect properties/styles of html elements of spin buttons.
I had an identical issue. However in my case, NetAdvantage did indeed register within VStudio 2k10 correction including the Infragistics.Web tag.In this case the tilde appears to have been preventing the asp.net cs 3.5 site from identifying the css paths for the controls.
I removed the tilde and the button populated in the page as expected.
was: styleSetPath="~/ig_res"
changed: styleSetPath="ig_res"
...expected images and behaviors returned.
Hope that helps someone.
When i used infragistics.. And CSS not showed; I had that copy of my Project the folder “Ig_res” to my application web, and this work.
Good Luck.