Hallo,
is there a way to cancel the the ‘deletetd’ state of
one or more rows in the dataprocessor inclusive the
reset of the strikeout style in update mode “off”?
To cancel an update exists the method dp.setUpdated(id,false) - is
there a similar function to cancel the deleted state?
Thanks in advance,
T. Rietz
dp.setUpdated(id,false) will remove deleted status from the row as well, but it will not remove visual marking from deleted row
You may try to use
dp.setUpdated(id,false)
grid.setRowTextStyle(id,“text-decoration : none;”);
Hallo,
Thanks for your quick answer. It works how I needed.
T. Rietz