Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 addColumn 插入嵌入对象的属性(字符串)。
我的代码只是:
tarifsLignesGrid.addColumn(TarifsLignes::getProducts).setCaption(TITRE_PRODUITS)
getProduct 返回一个 Product 实体,我想在其中使用 name 属性而不是 toString。
更多的上下文会很好,但我会在黑暗中试一试。假设 Product 类有一个getName()方法:
getName()
tarifsLignesGrid.addColumn(t -> t.getProducts().getName()).setCaption(TITRE_PRODUITS)