admin管理员组文章数量:1340291
I want to achieve expandable row functionality for table. Let's assume we have table with task names and task plexity. When you click on one task the description of task is shown below. I try to do it this way with ReactJS (in render method):
if (selectedTask === task.id) {
return [
<tr>
<td>{task.name}</td>
<td>{taskplexity}</td>
</tr>,
<tr>
<td colSpan="2">{task.description}</td>
</tr>
];
} else {
return <tr>
<td>{task.name}</td>
<td>{taskplexity}</td>
</tr>;
}
And it doesn't work. It says:
A valid ReactComponent must be returned. You may have returned undefined, an array or some other invalid object
I tried also to wrap 2 rows in a div but I get wrong rendering.
Please, suggest correct solution.
I want to achieve expandable row functionality for table. Let's assume we have table with task names and task plexity. When you click on one task the description of task is shown below. I try to do it this way with ReactJS (in render method):
if (selectedTask === task.id) {
return [
<tr>
<td>{task.name}</td>
<td>{task.plexity}</td>
</tr>,
<tr>
<td colSpan="2">{task.description}</td>
</tr>
];
} else {
return <tr>
<td>{task.name}</td>
<td>{task.plexity}</td>
</tr>;
}
And it doesn't work. It says:
A valid ReactComponent must be returned. You may have returned undefined, an array or some other invalid object
I tried also to wrap 2 rows in a div but I get wrong rendering.
Please, suggest correct solution.
- just return the two tr in a string instead of array? – Salketer Commented Oct 20, 2015 at 10:02
- Actually real life task is a bit more plex. So, string would not be enough – gs_vlad Commented Oct 20, 2015 at 10:04
1 Answer
Reset to default 17The render()
method on a React ponent must always return a single element. No exceptions.
In your case, I would suggest wrapping everything inside a tbody
element. You can have as many of those as you want in a table without disrupting your row structure, and then you'll always return one element inside render()
.
if (selectedTask === task.id) {
return (
<tbody>
<tr>
<td>{task.name}</td>
<td>{task.plexity}</td>
</tr>,
<tr>
<td colSpan="2">{task.description}</td>
</tr>
</tbody>
);
} else {
return (
<tbody>
<tr>
<td>{task.name}</td>
<td>{task.plexity}</td>
</tr>
</tbody>
);
}
本文标签: javascriptRender 2 table rows in ReactJSStack Overflow
版权声明:本文标题:javascript - Render 2 table rows in ReactJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743628440a2512693.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论