Dylan N
Dylan N
@prvnbist can you use the "options" prop directly? does that still have issue? Those are options that will be passed directly to Tabulator when initializing the table. In the mean...
@prvnbist I created an example to show how to use "selectableCheck" & "rowSelectionChanged" together. Let me know if that works for you: https://codesandbox.io/s/react-tabulator-row-selection-v9d4x?file=/src/components/Home.js
not sure why you meant but the rowClick prop is deprecated now, please use the new "events" prop and put rowClick in there.
I don't see that error in the examples. @kodeine Could you post your code? Codesandbox is even better.
Can you try this with the latest example? It works: https://codesandbox.io/s/0mwpy612xw?module=/src/components/Home.js&file=/src/components/Home.js
@Lexiebkm yes, you can try the callbacks as props (see ConfigUtils.tsx, propsToOptions). otherwise, you can pass the callbacks in the "options" props as stated in README (props.options are passed to...
That tag editor is supposed to be an example so you can create something similar to it. I will add a cross icon "X" to delete a tag, but still...
added an example for Ajax Scrolling: https://github.com/ngduc/react-tabulator/blob/master/src/ReactTabulatorExample.tsx#L91-L129 today it has this code: ```js componentDidUpdate() { this.table.setData(this.state.data); } ``` Will it help if I put a check there to ignore it...
This seems to be related to this issue - https://github.com/ngduc/react-tabulator/issues/82
unit tests work find for commits in master and local, see "yarn test" in: https://github.com/ngduc/react-tabulator/blob/master/.github/workflows/node.js.yml I think this error is from an older version "tabulator_tables_1.default is not a constructor", upgrade...