-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: How can we handle rowspan and colspan #21
Comments
Hi @onesinus Even the primitive react-virtualized and react-window libraries don't support this feature yet. bvaughn/react-virtualized#123 However, I'm still hopeful that I can find a way to do at least one of |
I think we really need a virtualized grid component in react, that supports |
Hi @episodeyang For example: I am still doing research around these topics and haven't really found a decent solution so far. I'll check with Brian Vaughn to see if he has time to enlighten us with his point of view on the subject. |
Some references for you: Some react ui library like antd define cospan as column prop const columns = [
{
title: 'Name',
dataIndex: 'name',
render: (text, row, index) => {
if (index < 4) {
return <a>{text}</a>;
}
return {
children: <a>{text}</a>,
props: {
colSpan: 5,
},
};
},
}, https://ant.design/components/table/#components-table-demo-colspan-rowspan |
In table we can set rowspan and colspan, how about TableWindow?
The text was updated successfully, but these errors were encountered: