0

Is it possible to render two rows for each data item in the kendo grid for Angular? The grid is very narrow and we need to have a textual description for each data item which has no space in a extra column.

Example:

<table border=1>
  <tr>
    <th>ID</th>
    <th>Name</th>
  </tr>
  <tr>
    <td>1</td>
    <td>John</td>
  </tr>
  <tr>
    <td colspan="2">This is the first employee.</td>
  </tr>
  <tr>
    <td>2</td>
    <td>Jane</td>
  </tr>
  <tr>
    <td colspan="2">This is the second employee.</td>
  </tr>
</table>
Patricio Vargas
  • 5,236
  • 11
  • 49
  • 100
Sebastian S.
  • 1,173
  • 3
  • 13
  • 22

1 Answers1

0

I ended up using the detail row template to add the textual description. The detail rows are expanded by default in the component.

Sebastian S.
  • 1,173
  • 3
  • 13
  • 22