Open sdhaliwal opened 5 years ago
public MaterialCheckBox(SafeHtml label) { super(label); }
When this constructor is called. It is rendering SafeHtml as text. A workaround for this is to use the constructor.
public MaterialCheckBox(SafeHtml label, DirectionEstimator directionEstimator) { super(label, directionEstimator); }
This is happening in gwt-material 2.2.
Can you elaborate more about the sample on whats happening if you use the above constructor?
When this constructor is called. It is rendering SafeHtml as text. A workaround for this is to use the constructor.
This is happening in gwt-material 2.2.