Is it possible to disable row-highlighting once we have saved the record?
Thank you.
1 Answers
You can override css style to remove highlight effect.
<style>
.ui-state-highlight{
border:inherit!important;
background:none!important;
}
</style>
You can adjust colors as per your theme.
Your Answer