366 questions
0
votes
1
answer
41
views
How to highlight current column/header on mouse over?
By default, Bootstrap-Table highlights the current row on mouse over:
https://examples.bootstrap-table.com/
How can I achieve the same with the current column?
(As a matter of fact, it would be even ...
0
votes
3
answers
55
views
How to show BootstrapTable headers and sub headers?
I am working with React Js for Frontend application. I have one table structure like below-
<BootstrapTable
...
3
votes
1
answer
3k
views
Does react-bootstrap-table-next compatible with React 18?
I have a existing react 17 application, which needs to migrate react 18. So when migrating I faced compatible issue with react-bootstrap-table-next.
"While resolving: react-bootstrap-table-next@4....
1
vote
1
answer
300
views
react-bootstrap-table: Column formatter is not re-rendering
I have the following column formatter:
// const [shouldShowCancel, setShouldShowCancel] = useState(false);
function nameColumnFormatter(cell, row) {
var shouldShowCancel = false;
return (
...
1
vote
0
answers
275
views
I want to add a custom Header to a CSV file that I get from exportCSV of react-bootstrap-table2-toolkit
I want to add a custom Header to a CSV file that I get from exportCSV of react-bootstrap-table2-toolkit
Documentation: https://react-bootstrap-table.github.io/react-bootstrap-table2/storybook/index....
1
vote
0
answers
314
views
How to use map with react-bootstrap-table-next
I'm trying to use add sorting and pagination to a HTML table by using react-bootstrap-table. I'm able to make it work on all fields except the last column where I need to map an array that has a link ...
0
votes
1
answer
212
views
the input text box focus is getting exited while navigating to the second page react-bootstrap-table2-toolkit
I am using:
"react-bootstrap-table-next": "4.0.3",
"react-bootstrap-table2-paginator": "^2.1.2",
"react-bootstrap-table2-toolkit": "^2.1.3",
...
0
votes
0
answers
60
views
How to export react-bootstrap table in to pdf
I have a react-bootstrap table and I need to export table data to a pdf. 'useReactToPrint' along with useRef is not working properly. Any other method campatible with react-bootstrap table?
Generate a ...
0
votes
1
answer
709
views
bootstrap-table with symfony 6 throught webpack not compiling
I'm trying to update a symfony project and its nodes plugins. I just discovered that when running my app, I get a webpack error about Uncaught bootstrap (not working after that) table saying
TypeError:...
0
votes
1
answer
117
views
How to get the filtered data in bootstrap datatable while using React.js by entering in search box?
I am using bootstrap datatable in my React application
function MyApp(){
const tableRef = useRef(null);
const [tableSave, setTableSave] = useState(null)
const [dataFromAPI, setDataFromAPI] = useState(...
-1
votes
1
answer
795
views
Change font color of inside the react bootstrap striped table
I am using this react bootstrap table with striped rows.
According to the docs, I can "Invert the colors of the table — with light text on dark backgrounds by setting variant as dark." ...
0
votes
3
answers
69
views
fetching data not showing in table in react
I am creating a table and fetching data using Axios. However, I am not able to print the data – when I check, the data is being printed in the browser, but I am not able to print the particular data ...
0
votes
2
answers
921
views
Why isn't react-bootstrap table not working
i wanted to create a table using react-bootstrap .so installed react-bootstrap by
npm install react-bootstrap boostrap
then i imported the Table from react-bootstrap and rendered the table but it is ...
1
vote
1
answer
259
views
Is there a way to use validation on the textFilter of react-bootstrap-table2-filter?
Below is the object I use.
{
dataField: "hostname",
text: "hostName",
filter: textFilter({
placeholder: t("hostName"),
...
1
vote
0
answers
380
views
Enable Disable multiple checkboxes in React Bootstrap Table Next
I'm having a hard time trying to enable/disable checkboxes using Bootstrap Table Next and React.
For the checkboxes I'm using a column formatter like this:
formatter: (cell, row) => {
...