All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.widgets.Table.utils.jsx Maven / Gradle / Ivy

The newest version!
import findIndex from 'lodash/findIndex'

export const getIndex = (datasource, selectedId) => {
    // eslint-disable-next-line eqeqeq
    const index = findIndex(datasource, model => model.id == selectedId)

    return index >= 0 ? index : 0
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy