Ok, first I am a noob to ASP. I took over a project from a guy that left. I looked at this for a day so any help is appreciated.
My problem is that I only see a red X instead instead of the drop down image.
I see the file I would expect in ig_res\Nautilus\images\igdd_DropDownButton.png. inside of my project.
DropDowns on the main page look fine. What does not look right is the drop downs on a the new window that opens.
<ig:WebDropDown ID="ddlDesc" runat="server" DropDownAnimationType="Linear"
DropDownContainerHeight="0px" DropDownContainerMaxHeight="0px"
DropDownContainerWidth="0px" EnableDropDownAsChild="True"
MultipleSelectionType="Checkbox" PageSize="0" Width="200px" TextField="Text"
ValueField="Value" >
<ClientEvents SelectionChanged=DdlDesc_IndexChanged_ />
</ig:WebDropDown>
Web.config
<
infragistics.web javaScriptDirectory="~/JavaScript" imageDirectory="~/ig_images" cssDirectory="~/ig_res"/>
I also tried to add this to my new page that opens. It did not resolve my issue.
/>
I think if you set styleSetPath="<location of ig_res folder>" it should work fine. For example:
<infragistics.web javaScriptDirectory="~/JavaScript" imageDirectory="~/ig_images" cssDirectory="~/ig_res" styleSetPath="~/ig_res/" />
I'm in about the same boat on this.
I've added a webdropdown to my page. I bound it to my SQLDatasource. I set the text and value fields. I have not done anything re: styling. or changed my web.config.
My application already has the appropriate DLLs, references, and scripts included as I use UltraWebGrids in it w/no problem.
Running my project in debug mode in VS2008, the webdropdown looks fine and performs properly.
After building my project and websetup and installing on my web server, I get a red X box where the downarrow should be. I can click on that and the list drops down and functions (although it abviously has display/style issues - it looks more like a stack of hyperlinks in the webserver).
I'm assuming I missed something basic?
Hi,
Could you check what URL it is looking for for the image that is not displayed? your resources (ig_res folder) must be placed in that location, or you should ovverride it in web.config.
Hope it helps. Thanks,
Angel
My fault.
It turns out the ig_res folder was not included in the Websetup project. I'm not used to web projects - I normally do web sites. I'm still trying to figure out what is automatically included or detected in a Websetup and what is not (and how to add what is not).
I added the ig_res tree and all files to the Websetup and the dropdowns display properly now.
thanks!