Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Hilite Issue + How to increase Icon size.

    Hello Everyone,

    I have an issue when using the Hilite feature. See the following code:

    private static Hilite[] hilites = new Hilite[] {
    new Hilite() {{
    setFieldNames("test");
    setCriteria(new Criterion("FIELD1", OperatorId.EQUALS, true));
    setIcon("circle_green.svg");
    }},
    new Hilite() {{
    setFieldNames("test");
    setCriteria(new Criterion("FIELD1" OperatorId.EQUALS, false));
    //setCssText("width: 10px;height: 10px; background: red; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;");
    setIcon("circle_red.svg");
    }}
    };

    My problem is that i have no possibility to increase the size of my icon. Could you please advise how to do so?

    Kind Regards,
    Michaël.
Working...
X