You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -417,6 +417,7 @@ class CustomDataTable extends React.Component {
417
417
Supported customizable components:
418
418
* `Checkbox` - A special 'data-description' prop lets you differentiate checkboxes [Example](https://github.com/gregnb/mui-datatables/blob/master/examples/custom-components/index.js). Valid values: ['row-select', 'row-select-header', 'table-filter', 'table-view-col'].The dataIndex is also passed via the "data-index" prop.
Copy file name to clipboardExpand all lines: src/MUIDataTable.js
+31-29Lines changed: 31 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -276,8 +276,8 @@ class MUIDataTable extends React.Component {
276
276
this.draggableHeadCellRefs={};
277
277
this.resizeHeadCellRefs={};
278
278
this.timers={};
279
-
this.setHeadResizeable=()=>{};
280
-
this.updateDividers=()=>{};
279
+
this.setHeadResizeable=()=>{};
280
+
this.updateDividers=()=>{};
281
281
282
282
letdefaultState={
283
283
activeColumn: null,
@@ -450,12 +450,12 @@ class MUIDataTable extends React.Component {
450
450
){
451
451
this.warnDep(
452
452
this.options.responsive+
453
-
' has been deprecated, but will still work in version 3.x. Please use string option: standard | vertical | simple. More info: https://github.com/gregnb/mui-datatables/tree/master/docs/v2_to_v3_guide.md',
453
+
' has been deprecated, but will still work in version 3.x. Please use string option: standard | vertical | simple. More info: https://github.com/gregnb/mui-datatables/tree/master/docs/v2_to_v3_guide.md',
454
454
);
455
455
}else{
456
456
this.warnInfo(
457
457
this.options.responsive+
458
-
' is not recognized as a valid input for responsive option. Please use string option: standard | vertical | simple. More info: https://github.com/gregnb/mui-datatables/tree/master/docs/v2_to_v3_guide.md',
458
+
' is not recognized as a valid input for responsive option. Please use string option: standard | vertical | simple. More info: https://github.com/gregnb/mui-datatables/tree/master/docs/v2_to_v3_guide.md',
459
459
);
460
460
}
461
461
}
@@ -674,19 +674,19 @@ class MUIDataTable extends React.Component {
0 commit comments