I'm facing a challenge with my MVC view that has a table filled from a partial view. The table consists of one set of
<thead><th></th></thead>
and then a collection of <tr></tr>
. In the full view, I have defined the table as:
<table id="resultTable" border="1">
The issue is that the dynamically populated <tr>
s and <td>
s are not displaying the border.
I've tried looking for a solution but haven't been successful so far.
Has anyone encountered this problem before?