We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clear search button problem in RTL mode
for RTL mode , clear search bottun should be shown in left side of text box, like this:
I resolve my problem using this CSS .ui-grid[dir=rtl] .ui-grid-filter-container .ui-grid-filter-button { right: auto; left: 37px; }
.ui-grid[dir=rtl] .ui-grid-filter-container .ui-grid-filter-button { right: auto; left: 37px; }
because of source code CSS is written in LESS I can't change it and create a pull request!
The text was updated successfully, but these errors were encountered:
@novice3030 : is this something you'd look at? Do I recall something like this that you were already doing?
Sorry, something went wrong.
I was doing some other RTL support for other features. I'll test that CSS and if it's ok i'll do a PR for it
0885e50
fix(RTL): Put filter cancel on left for RTL
01189c1
Filter cancel button was on the right in RTL grids, overlaying text. Fixes angular-ui#2058
Is it only me or IE11 still has this issue. it looks like it ignores the rtl css and override it with the former css. (using ui-grid version 3.1.1)
No branches or pull requests
Clear search button problem in RTL mode
for RTL mode , clear search bottun should be shown in left side of text box, like this:
I resolve my problem using this CSS
.ui-grid[dir=rtl] .ui-grid-filter-container .ui-grid-filter-button { right: auto; left: 37px; }
because of source code CSS is written in LESS I can't change it and create a pull request!
The text was updated successfully, but these errors were encountered: