Hi,
Indeed this is a bug in the Data Grid 2. A pure CSS only solution is:
.table .td > .td-custom-content {
pointer-events: none;
}
This is a generic solution and will work out of the box. Pointer-events is pretty good supported as far as I know. Probably not on older IE browsers. But chrome, edge, firefox should be fine for the newer versions.
Hi there,
It appears the problem is that using custom content adds an additional div element that blocks that click action:
To reduce the impact this div element has, you could apply a CSS style such as "display:contents" so all of the whitespace is clickable:
Which can be added using the dynamic class in the data grid column:
I couldn't find any CSS solutions to allow the content to be clicked as well. One fix to this would be to create a Javascript action that triggers the change in style once the content is clicked. But this might not work for future versions of Data Grid 2
Hope this helps,
Liam
Hi Helena,
Yes, this is a known Issue of the Datagrid2.
You can use the CSS Solutions from the Answers above.
Other Workaround would be to set the Custom Content in a Container and on this Container use a OnClick with your Microflow.
EDIT : in the new Versions of DataGrid, there is the option to use "Double Click"
Best Regards,