If I have a <th> element that has text where the first character is a numeric value (e.g. '1 Title'), the attempt to create a KendoGrid from the table fails. For example, the following code fails, but if I replace '1 Title' with something like 'A1 Title', it works. Is it suppose to work that way?
<
table
id
=
'OneTable'
>
<
thead
>
<
tr
>
<
th
>One Title</
th
>
<
th
>1 Title</
th
>
</
tr
>
</
thead
>
<
tbody
>
<
tr
>
<
td
>One Data</
td
>
<
td
>1 Data</
td
>
</
tr
>
</
tbody
>
</
table
>
<
script
type
=
"text/javascript"
>
$(document).ready(function () {
$('#OneTable').kendoGrid();
});
</
script
>