-
Notifications
You must be signed in to change notification settings - Fork 429
New issue
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
Cannot read property 'id' of undefined + The above error occurred in the <SelectionProvider> component: #1669
Comments
Same issue here. I've tried specifically defining the I'm now going to try to find a workaround, and I'd consider making a PR fix, but this repo doesn't seem like it is being maintained. |
@bfricka Thanks a lot, I am also trying to fix it, I will post here if I can fix it, between if you find any solution, plz post the solution here. Thanks again :) |
Hello, I had a similar issue and did a short investigation on it. I found the following In the function get(target, field) {
var directGet = target[field];
if (directGet !== undefined && directGet !== null) {
return directGet;
}
var pathArray = splitNested(field);
var result = void 0;
try {
result = pathArray.reduce(function (curr, path) {
return curr[path];
}, target);
} catch (e) {}
return result;
} The problem is that in some cases the target parameter is undefined and that throws that error. So I wrapped the entire body function inside the try/catch block in order to catch the error as it is shown below function get(target, field) {
var result = void 0;
try {
var directGet = target[field];
if (directGet !== undefined && directGet !== null) {
return directGet;
}
var pathArray = splitNested(field);
result = pathArray.reduce(function (curr, path) {
return curr[path];
}, target);
} catch (e) {}
return result;
} I hope that this will be useful to you too. This is not a proper fix though. The developers of the library has to take a look at it :) |
Thanks @myapos will check with that solution, between for the current project I have implemented https://react-table.tanstack.com/ package. |
I made a PR too. I hope the developers will merge at least one of them. It is a simple fix. |
Faced same issue and implemented my own pagination component and here how I'm using it. |
I am facing the same issue what is the solution |
This just works great, thanks for this |
In case you are using pagination that need to fetch new data from the api on page change you need to enable the "remote" prop and you need to handle onTableChange by yourself. documentation |
Just pass - remote={{pagination: true } } in BootstrapTable. It will work |
Hi Allen,
The bug
I want all these functionalities in single table searching in all fields + paging, it works fine for the first time, but after navigating to another page and searching for something generates error. for your reference have added code snippet and error,
Code Snippet
To Reproduce
Steps that generate errors:
Error Screenshots
If applicable, add screenshots to help explain your problem.
The text was updated successfully, but these errors were encountered: