html property value not displaying in touch UI
The dialog field with additional properties "html" displaying in classic UI ,but it is not displaying in touch UI .
Please find the following code
@DialogField(
xtype = "label",
additionalProperties = {
@Property( name = "html",
value = "<div style=\"color: #ff0000; border: 1px dashed #ff0000;\"><div style=\"text-align: center;\"><b style=\"color: #ff0000;\">Use ONLY \"ThankYou\" / \"Custom Thank You\" templates!</b></div><div style=\"color: #ff0000; text-align: center;\">Otherwise, you cannot track visitor channels.</div></div><br>")}
)
private static final DialogOnlyField STATIC_MESSAGE_1 = DialogOnlyField.getInstance();
DialogOnlyField .java
public final class DialogOnlyField {
private final static DialogOnlyField INSTANCE = new DialogOnlyField();
private DialogOnlyField() {
}
public static final DialogOnlyField getInstance() {
return INSTANCE;
}
}
Followed the below link , no luck , not worked .
can anyone please help me in this ?


