Doc for rowStyle

pull/1280/head^2
Cagatay Civici 2021-11-15 16:32:35 +03:00
parent 751ede7899
commit c9df934f2a
2 changed files with 3 additions and 3 deletions

View File

@ -303,7 +303,7 @@ const DataTableProps = [
name: "rowStyle", name: "rowStyle",
type: "object", type: "object",
default: "null", default: "null",
description: "Inline style of the row." description: "A function that takes the row data as a parameter and returns the inline style for the corresponding row."
}, },
{ {
name: "scrollable", name: "scrollable",

View File

@ -2106,13 +2106,13 @@ export default {
<td>rowClass</td> <td>rowClass</td>
<td>function</td> <td>function</td>
<td>null</td> <td>null</td>
<td>A function that takes the row data and returns a string to apply a particular class for the row.</td> <td>A function that takes the row data as a parameter and returns a string to apply a particular class for the row.</td>
</tr> </tr>
<tr> <tr>
<td>rowStyle</td> <td>rowStyle</td>
<td>object</td> <td>object</td>
<td>null</td> <td>null</td>
<td>Inline style of the row.</td> <td>A function that takes the row data as a parameter and returns the inline style for the corresponding row.</td>
</tr> </tr>
<tr> <tr>
<td>scrollable</td> <td>scrollable</td>