hello, i need to hide the column header (<th) in my ejGrid, can you help me with that please. This is my code:
<body>
<div id="Grid"></div>
<table id="Table1">
<colgroup>
<col />
<col />
</colgroup>
<thead>
<tr>
<th>Medición
</th>
<th>Valor
</th>
</tr>
</thead>
<tbody>
<tr>
<td>m/s</td>
<td>236</td>
</tr>
<tr>
<td>km/h</td>
<td>14-54</td>
</tr>
</tbody>
</table>
</body>
<script>
$(function () {
$("#Grid").ejGrid({
dataSource: ej.DataManager($("#Table1")), width: 130,
ShowColumnHeaders :false,
columns: [
{ field: "Medición", headerText: "Medición", width: 70 },
{ field: "Valor", headerText: "Valor", width: 50 }
]
});
});
</script>
Thanks