19
Views
4
Comments
Solved
datagrid's ditrymark?
Question
Application Type
Reactive
Service Studio Version
11.54.31 (Build 62912)

Is there a way to not display the datagrid's ditrymark?

Solution

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.

Solution

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;
}

thank you for your reply.

I was able to hide the Dirtymark.

Solution

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.

Solution

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;
}

thank you for your reply.

I was able to hide the Dirtymark.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.