Is there a way to not display the datagrid's ditrymark?
Hi Yukiyo,
Can you please elaborate more on this or share screenshot what exactly you are looking.
if you want to remove * (an asterisk) when a user makes changes to a record to indicate that the data is "dirty" or unsaved then you can use your browser's developer tools to inspect the dirty mark element. It's typically a <span> element with a specific class name that's added to the cell when the data in that cell is edited.
in the application, you can add custom CSS to hide this element. For example, let's assume the dirty mark has a class name like .dirty-mark. You can add custom CSS to your screen or module:
.dirty-mark { display: none; }
Hope this help
Regards
Shoeb
thank you for your reply.
I was able to hide the Dirtymark.
Hi,As Shoeb mentioned, you can hide dirty mark by CSS. Just add this CSS to the CSS of the Screen or Theme:.wj-cell.dirty-mark:before {display: none;}