Closed
Description
After upgrading to the latest version of igniteui (2017.2, 456) and the latest version of igniteui-angularjs (1.2.1) I can no longer type whitespaces in a filter of an iggrid.
I can type every other possible character, except for spaces. I can type spaces with the alt code (ALT + 32) but not with the space bar.
When I create the same grid from JQuery I can type spaces with the space bar.
Below is an example of a very simple grid where this is no longer possible.
<ig-grid id="ig-yard" data-source="[email protected]" width="auto" height="315px" auto-commit="true" auto-generate-columns="false"> <columns> <column key="key" header-text="Identifier" width="0" data-type="string"></column> <column key="value" header-text="Name" data-type="string"></column> </columns> <features> <feature name="Filtering" mode="simple" render-filter-button="false"></feature> </features> <feature name="Tooltips" visibility="overflow" style="popover"> </feature> </ig-grid>
Anything I could be doing wrong / any way to fix this?