<@U78L28DMX>, sure! so i have a datagrid where i h...
# tornadofx
n
@amanda.hinchman-dominguez, sure! so i have a datagrid where i have a custom card which contains a button in it that i'm using to fire off an action. when the list starts to get longer the cards that were loaded first stop firing off those actions. here is the code, if it clears things up
Copy code
datagrid(viewModel.children) {
            scrollpane {
                cellCache {
                    card {
                        cardfront {
                            innercard(AppStyles.chapterGraphic()) {
                                title = it.labelKey.toUpperCase()
                                bodyText = it.titleKey
                            }
                            cardbutton {
                                action {
                                    viewModel.selectCollection(it)
                                }
                            }
                        }
                    }
                }
            }
        }