react-bootstrap-table2 icon indicating copy to clipboard operation
react-bootstrap-table2 copied to clipboard

How to remove label 'Filter by' ?

Open oleg41068 opened this issue 2 years ago • 3 comments

i'm run example https://react-bootstrap-table.github.io/react-bootstrap-table2/docs/basic-filter.html How to remove label 'Filter by' ?

oleg41068 avatar Feb 27 '23 12:02 oleg41068

Did you find a solution?

basiliskarakitsios avatar May 24 '23 14:05 basiliskarakitsios

https://stackoverflow.com/questions/19758598/what-is-sr-only-in-bootstrap-3

Maybe It happend because there was no '.sr-only' css. I added custom css file in react project and wrote below

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

My case, It works

JaewukLee-E avatar Jun 13 '23 05:06 JaewukLee-E

@JaewukLee-E This is working, thanks a lot, just add that class in your css. How did you figure it out? :)

PetarPan avatar Sep 01 '23 18:09 PetarPan