Mike Beech

Results 2 comments of Mike Beech

I think this is a valid issue. Here's how to add HTML5 elements directly using HTMLPurifier: ``` $config = HTMLPurifier_Config::createDefault(); if ($def = $config->maybeGetRawHTMLDefinition()) { $def->addElement('mark', 'Inline', 'Inline', 'Common'); $def->addElement('figure',...

@andrebassi I was struggling with the same thing. Take a look at https://github.com/MichaelCereda/react-native-form-generator/blob/master/examples/FormView.js#L99 You can set the field programmatically using the refs: ``` this.refs.theRefOfYourForm.refs.theRefOfYourInput.setValue("value"); ```