This is a migrated thread and some comments may be shown as answers.

colspan within Grid

1 Answer 1670 Views
Grid
This is a migrated thread and some comments may be shown as answers.
LYNN
Top achievements
Rank 1
LYNN asked on 09 Aug 2013, 03:19 PM
I would like to merge columns for a given row using the "colspan" attribute.  However, this seems to cause a "Cannot read property 'nodeName' of undefined" error. Is there a way to fix this? 

<table>
<thead>

<tr>
<th filter='false'>FIRST NAME</th>
<th filter='false'>LAST NAME</th>
<th filter='false'>STATE</th>
<th filter='false'>GENDER</th>
</tr>
</thead>
<tbody>

<tr>
<td>JOHN</td>
<td>SMITH</td>
<td>VIRGINIA</td>
<td>MALE</td>
</tr>

<tr>
<td colspan="4">
Address Info goes here
</td>
</tr>

</tbody>
</table>

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 09 Aug 2013, 03:24 PM
Hi Lynn,

I am afraid such a behavior is not supported. You could consider using a row template, if it is suitable for your scenario.

http://demos.kendoui.com/web/grid/rowtemplate.html

Regards,
Dimo
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Grid
Asked by
LYNN
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or