Open
Description
Here's a plunker example of a form that contains some HTML help fields. On a desktop browser, everything works as expected but on some mobile browsers, some HTML fields are not rendered.
The fields in the form are
[
"name",
{
type: "help",
helpvalue: "first"
}, {
type: "help",
helpvalue: "second <h3>heading</h3>"
}, {
type: "help",
helpvalue: "third <b>bold</b>"
}
];
Heres' a screenshot of how the form is rendered on this Android browser.
Notice that the first and third help fields are rendered correctly, but the second one with content
helpvalue: "second <h3>heading</h3>"
is omitted. When the form is rendered on a desktop browser all 3 fields are rendered correctly.