Is there any reason this would make the igCombo "clear" button do nothing? The clear button ("x") shows up, but when I click it, nothing happens. This is using the 13.2 version of IgniteUI.
<span id="Combo1"><input name="Combo1" type="hidden" /></span><script type="text/javascript">//<!--<![CDATA[
$(function () {$('#Combo1').igCombo({ filterExprUrlKey: 'filter', textKey: 'Identifier', valueKey: 'Identifier', inputName: 'Combo1', loadOnDemandSettings: null, dataSource: [{"Identifier":"10"},{"Identifier":"20"}] });});
The solution was swapping our bundles to this order:
@Styles.Render("~/Content/IG/themes")
@Styles.Render("~/Content/IG/structure")
Instead of
yes that file is in the project and I can see that it gets loaded in the page as well. What part of that css affects the "clear" button? maybe it is being overwritten by some other css? I can see that the infragistics.css file is getting applied to that control from IE tools.
Hello Ryan,
It looks like you have missing CSS references. Check if you have referenced the "css/structure/infragistics.css" file in your project.
Hope this helps,Martin PavlovInfragistics, Inc.
the clear button is shown in my example, it just doesn't do anything when you click it. it doesn't clear any text whether I select an item from the drop down or write text in there myself. I'll take a look at your sample after the Thanksgiving holiday.
Hi,
The clear Button is shown only when you select an item from the dropdown OR you start writing in the dropdown. Click on the clear button the data you have entered(the list item you have selected) should be removed. I have tested and it looks to work properly. Please check the attached sample.
Thanks,
Miro