|
|
@@ -555,5 +555,25 @@ The table options are defined in `jQuery.fn.bootstrapTable.defaults`.
|
|
|
if no locale files loaded).
|
|
|
</td>
|
|
|
</tr>
|
|
|
+ <tr>
|
|
|
+ <td>footerStyle</td>
|
|
|
+ <td>data-footer-style</td>
|
|
|
+ <td>Function</td>
|
|
|
+ <td>{}</td>
|
|
|
+ <td>
|
|
|
+ The footer style formatter function, takes two parameters: <br>
|
|
|
+ row: the row record data.<br>
|
|
|
+ index: the row index.<br>
|
|
|
+ Support classes or css. Example usage:<br>
|
|
|
+ <pre>
|
|
|
+ function footerStyle(value, row, index) {
|
|
|
+ return {
|
|
|
+ classes: 'text-nowrap another-class',
|
|
|
+ css: {"color": "blue", "font-size": "50px"}
|
|
|
+ };
|
|
|
+ }
|
|
|
+ </pre>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
</tbody>
|
|
|
</table>
|