Hello,
I have been chasing down an issue i've been having with the grid v15.2.20152.1027.
When I have filtering turned on and reference the CSS for bootstrap, any text that I have typed into the filter will disappear when the filter textbox has lost focus and then is hovered over.
If I comment out the bootstrap reference to the CSS then the text does not disappear.
I've included a link to a jsfiddle that I created demonstrating the issue. If you comment out this line
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"></link>
in the jsfiddle, you will get the behavior I expect. However, when that line is there, the text disappears when hovered over when the filter does not have focus.
Any ideas?
http://jsfiddle.net/r1owner/74vfoLw9/
Thanks,
Scott
i also have a question regarding the ui-grid-filter;
when i abling the 'ui-gid-selection' feature it ,in some pages, make the filter B partially covered by the cell border, screenshots attached:
http://prntscr.com/bi766x - when selection is able - u can see that there's an option for selecting rows
http://prntscr.com/bi76jo - when selection is disable - u can see that the filter looks totally good.
is this problem familiar 2 u? does anyone here encountered it? 10x.
Thanks!
Hello Scott,
Thank you for posting in our forums!
I have done some research on this and found as Bootstrap applies color and you applied it to all input,
The behavior as you hovered over filter text which does not have focus changed the color through boostrap though text is still there.
To get the desired behavior you can specify the input to use initial color when hovered. input:hover { color: initial; } Please see the modified sample. http://jsfiddle.net/74vfoLw9/1/