function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
jatin parashar 11jatin parashar 11 

how to make dynamic header and columns and its values in lwc??

how i make the table dynamic in lwc...like:--
<template for:each={getinfo} for:item="item">
<table>
<thead>
<tr key={item.Id}>
<th></th>  (i want it to make it dynamically according to requirement in for each loop.)
</tr>
</thead>
<tbody>

<tr key={item.Id}>
<th></th>  (i want it to make it dynamically according to requirement in for each loop.)
</tr>
</tbody>
</table>
</template>