I have a several dropdownlists in a div that render fine. However, a dropdownlist in a Table>thead<th does not render at all. Is it possible to place dropdownlist in this element?
This is my snippet:
<table id='RecConstCoverage' class='table table-striped'>
<thead>
<tr class='headerRow'>
<th>COVERED ASSETS</th>
<th>COVERAGE PLAN</th>
<th>COST OF INSURANCE ANNUAL (QTRLY)</th>
<th>MINIMUM INCOME vs REQUIREMENT FROM PORTFOLIO (a)</th>
<th>MINIMUM ANNUAL INCOME FROM PORTFOLIO</th>
<th>
ANNUAL INCOME <ejs-dropdownlist id="AppreciationDDL" dataSource="@Model.ConstCoverageChoices.Appreciation" placeholder="SELECT" change="CalculateCoverage">
<e-dropdownlist-fields text="PercentText" value="PercentValue"></e-dropdownlist-fields>
</ejs-dropdownlist>
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>