A
A
Alexander Knyazev2017-06-22 11:07:44
JavaScript
Alexander Knyazev, 2017-06-22 11:07:44

How to create a multi-row table in React-bootstrap?

I need to create a table with cells containing several rows, I do it like this:

<Table bordered>
                    <thead>
                        <tr>
                            <th>Date</th>
                            <th>Analysed ID</th>
                            <th>Analysed Name</th>
                            <th>Solve To change</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td rowSpan="3">Date</td>
                        </tr>
                        <tr>
                            <td>ID</td>
                            <td>Name</td>
                            <td>Decision</td>
                        </tr>
                        <tr>
                            <td>ID</td>
                            <td>Name</td>
                            <td>Decision</td>
                        </tr>
                    </tbody>
                </Table>

It works, I get this table:
a2e367327c1245b3956cd5d4f52130d2.png
Now I need to take out three

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question