B4J Question [ABMATERIAL] FileManager how to change the icons?

juvanum

Active Member
Licensed User
Longtime User
I need to change the icon in the lower right corner.
How do i do it?
thanks

Cattura.PNG
 
Last edited:

Harris

Expert
Licensed User
Longtime User
Doesn't appear possible...
These are material icons with reference to the font embedded into the abmfilemanager.js... ( >file_download< )

B4X:
if (self.options.canDownload) {
            tt = "";
            if (self.ttdownload) {
                tt = "<span class=\"abmfiletooltiptext\">" + self.ttdownload + "</span>";
            }
            frame.append("<li id=\"" + self.id + "-download\" style=\"margin-left: 15px;float:right;cursor: pointer\" class=\"abmfiletooltip hide\"><a><i class=\"material-icons white-text\">file_download</i></a>" + tt + "</li>");
        }
 
Upvote 0
Top