the plugin http://thrivingkings.com/formly/ does not show the “place” text when inside a table td tag. Cannot for the life of me find a way to make it work.
Example code:
<form>
<table>
<tbody>
<tr>
<td>
<input type="text" name="test_form" place="form" size="30px">
</td>
</tr>
</tbody>
</table>
</form>
Yes..As Andy said and I thought the plugin is expecting you to provide only direct children of form…
In that case if some more attributes are needed to be defined just define them directly..
As in this case add placeholder=”text” instead of place=””..