Is it possible to use ButtonRenderer<> in Grid dynamically? What I want to generate button conditionally (so it will not exists in every cell, but will appear in some cells), but I have no idea how to accomplish that.
Using mentioned ButtonRenderer is it possible for button to looks like ValoTheme.BUTTON_LINK?
This is not possible with regular ButtonRenderer, but it should be possible to extend in and my your custom ButtonRenderer with added logic to determine whether to show it or not. Especially if you make this application specific, so that you know the property names of the columns etc.
Thanks for your response. I have made workaround for this by using css to hide buttons (also changing them to link style). If anyone would be interested: