Skip to content Skip to sidebar Skip to footer

Knockout Virtual Elements Between Tr Tags In Ie Browsers

I have the following code: ... Select Locations *<

Solution 1:

This is an issue with Internet Explorer that Knockout can't really compensate for. In your case, a good workaround is to use a tbody tag around your row. A table can include multiple tbody tags. So, your code would look like:

 ...
</tr>
<tbody data-bind="if: eLocBound() == 'true'">
<tr>
    <td>Select Locations <span class="required_star">*</span></td>
    <td><input type="text" /></td>
</tr>
</tbody>
<tr>
...

Post a Comment for "Knockout Virtual Elements Between Tr Tags In Ie Browsers"