1

dart webui と<template>アイテムの制限について理解しました。

IE: この制限を回避して、テーブルにテンプレートを使用することができます:

<table>
  <tbody iterate="row in rows">
  <tr iterate="cell in row">
    <td> {{cell}} </td>
  </tr>
  </tbody>
</table>

でも。テーブルに複数のtbodyセクションが必要な場合にテンプレートを使用するにはどうすればよいですか(例: http://jsfiddle.net/umRJr/ )

いいえ:

<table>
  <thead><tr><td>title</td></tr></thead>
  <template iterate="section in sections"> <!-- can't do this... :-( -->
    <tbody iterate="row in section">
      <tr iterate="cell in row">
         <td> {{cell}} </td>
      </tr>
    </tbody>
   </template>
</table>

のようなものが欲しいので

<table>
   <thead> ... some headers here </thead>
   <tbody> .. content1 .. </tbody>
   <tbody> .. content2 .. </tbody>
    ...
   <tbody> .. content N .. </tbody>
</table>

?

4

1 に答える 1