cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X

Hide element, ElementDisplay, code

PV_955396
2-Guest

Hide element, ElementDisplay, code

Hey everybody.

 

Our Arbortext plugin highlights potential errors in the text with color. But this introduces a lot of unwanted "_font" tags into the document view.

We can hide those manually by looking at the document's DCF and adding this:

<ElementDisplay element="_font" fullTagModeDisplay="none" partialTagModeDisplay="none"/>

 

Please advise if there is a chance to do the same temporarily&safely from the plugin's code?

Looking for some guidance in ACL or Java.

 

thank you.

1 REPLY 1

ACL:

# display tags
tag_display -full "_font"

# hide tags
tag_display -none "_font"
Top Tags