You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but i got an error when clicking the Edit button:
Uncaught TypeError: Cannot read property 'map' of undefined dataSelectors.js:246
/** Gets the griddleIds for the visible rows */
var visibleRowIdsSelector = exports.visibleRowIdsSelector = (0, _reselect.createSelector)(dataSelector, function (currentPageData) {
return currentPageData.map(function (c) {
return c.get('griddleKey');
});
});
at return currentPageData.map(function (c) {
Any idea what is the best approach to get the onClick event in the button? Again my goal is to have actions col with actions buttons. When clicking Edit I want to communicate outside Griddle and show a popup.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to have an Actions column with Edit and View buttons. I am using a customComponent.
I need to somehow grab the onClick event and open a Modal.
I also tried making this component connected to my Redux store.
but i got an error when clicking the Edit button:
Uncaught TypeError: Cannot read property 'map' of undefined dataSelectors.js:246
at return currentPageData.map(function (c) {
Any idea what is the best approach to get the onClick event in the button? Again my goal is to have actions col with actions buttons. When clicking Edit I want to communicate outside Griddle and show a popup.
Thanks.
The text was updated successfully, but these errors were encountered: