Disable icono in ExternalDocumentField

Hi,

Hello
I have implemented external-document-picker, as indicated in:
https://bloomreach-forge.github.io/external-document-picker/, the option, Flat List View.

I need to know how I can do so that the icon (Hippo) does not appear on the next screen.

Regards

Hi,
you can try to use the icon.style parameter described here [1].

HTH

[1] https://bloomreach-forge.github.io/external-document-picker/field/dev-howto-listview.html

Or you can return a non-blank icon URL in the #getDocumentIconLink(...) of your facade class. If non-blank, the dialog uses it as icon src.

Or you can shadow classpath:/org/onehippo/forge/exdocpicker/impl/field/no-icon.jpg in your cms web application subproject to replace it.

Regards,

Woonsan

Hi,
What Ihave is

and what I want is not to show the icon. For example :

Hi,

-SOLVE-

The way in which it has been possible to solve is to introduce the ExternalDocumentFieldBrowserDialog.css
file in the demo project in the path :

cms \ src \ main \ resources \ org \ onehippo \ forge \ exdocpicker \ impl \ field

The class has been modified:

.exdocfield-browser-result-image {
display: none;
width: 150px;
float: left;
}