Using Webgrid to create <th> tag -
i tried render table using webgrid, structure using webgrid render doesn't contain <th> tag, , renders <td> inside <tr> tag inside ''.
can me how render <th> tag without using <table>? such : `
<tbody> <tr> <th> </th> <td></td> </tr> </tbody> </table> `
thx lot
the webgrid render th elements default unless set displayheader parameter false. render them in tr within thead element. additionally, render opening <table> tag. if don't want opening <table> tag, have manually construct whatever html want render.
Comments
Post a Comment