Doc for rowStyle
parent
751ede7899
commit
c9df934f2a
|
@ -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",
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue