Just learned some basic forms of HTML and wanted to implement a dropdown menu into a table cell. My code below:
<tr>
<th><input type="text" /></th>
<th>
<select>
<option>One</option>
<option>Two</option>
</select>
</th>
</tr>
The input boxes are displayed perfectly, and dropdown only works when I test my snippet in Tryit Editor.
But when built into my REDCap project the dropdown snippet code is only shown as plain standard text? Screenshot attached. Screen | As you can see, input fields also work.