It's possible to reload the snippet, but you will need to put the snippet inside a dataview with a helper object and refresh that parent dataview in the client at the end of the microflow action behind the button. The dataview refresh will cause the snippet to be reloaded.
A better option would be to try grid cell styler, have a look here
Hi Alexander,
If I understand correctly you want to make the font of a selected row in a datagrid bold. A way to obtain this result is using sass/css. _datagrids.scss contains styling on selected table row which you can modify
// Table body
tbody {
// Table row
tr {
// Striping
&:nth-child(even) td {
background-color: $grid-bg-striped;
}
// Hover styling
&:hover td {
background-color: $grid-bg-hover !important;
}
// Selected + hover styling
&.selected:hover td {
background-color: $grid-bg-selected-hover !important;
font-weight: bold; //Added by yourself
}
A good practice is not ATLASUI components themselves but setup specific styling for the app and copy the _datagrids.scss from the <project>\theme\styles\web\sass\core\widgets directory to <project>\theme\styles\web\sass\app\components. Gulp or Calipso can be used.