Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
Version 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
makinggoodsoftware committed Jun 26, 2017
1 parent b54d549 commit f8f0c21
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 14 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ag-grid-react-example",
"version": "10.0.0",
"version": "11.0.0",
"description": "Example Reach applicaiton using ag-Grid.",
"main": "dist/ag-grid-react-example.js",
"scripts": {
Expand Down Expand Up @@ -62,9 +62,9 @@
"react-redux": "5.0.x",
"redux": "3.6.x",
"url-search-params-polyfill": "1.2.0",
"ag-grid": "10.1.x",
"ag-grid-enterprise": "10.1.x",
"ag-grid-react": "file:../ag-grid-react"
"ag-grid": "11.0.x",
"ag-grid-enterprise": "11.0.x",
"ag-grid-react": "11.0.x"
}
}

Expand Down
5 changes: 2 additions & 3 deletions src/filterComponentExample/FilterComponentExample.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ export default class FilterComponentExample extends Component {
headerName: "Filter Component",
field: "name",
filterFramework: PartialMatchFilter,
width: 400
width: 400,
menuTabs:['filterMenuTab']
}
];
}
Expand Down Expand Up @@ -75,8 +76,6 @@ export default class FilterComponentExample extends Component {
rowData={this.state.rowData}

enableFilter
suppressMenuColumnPanel // ag-enterprise only
suppressMenuMainPanel // ag-enterprise only

// events
onGridReady={this.onGridReady}>
Expand Down
6 changes: 3 additions & 3 deletions src/groupedRowInnerRendererExample/MedalRenderer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ export default class MedalRenderer extends Component {
super(props);

this.country = this.props.node.key;
this.gold = this.props.data.gold;
this.silver = this.props.data.silver;
this.bronze = this.props.data.bronze;
this.gold = this.props.node.aggData.gold;
this.silver = this.props.node.aggData.silver;
this.bronze = this.props.node.aggData.bronze;

// override the containing div so that the +/- and label are inline
this.props.reactContainer.style.display = "inline-block";
Expand Down
2 changes: 1 addition & 1 deletion src/masterDetailExample/DetailPanelComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class DetailPanelComponent extends Component {
headerName: 'Duration',
field: 'duration',
cellClass: 'call-record-cell',
cellFormatter: this.secondCellFormatter
valueFormatter: this.secondCellFormatter
},
{headerName: 'Switch', field: 'switchCode', cellClass: 'call-record-cell'}];

Expand Down
3 changes: 1 addition & 2 deletions src/masterDetailExample/MasterDetailExample.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class MasterDetailExample extends Component {
},
{headerName: 'Account', field: 'account'},
{headerName: 'Calls', field: 'totalCalls'},
{headerName: 'Minutes', field: 'totalMinutes', cellFormatter: this.minuteCellFormatter}
{headerName: 'Minutes', field: 'totalMinutes', valueFormatter: this.minuteCellFormatter}
];
}

Expand Down Expand Up @@ -131,7 +131,6 @@ export default class MasterDetailExample extends Component {

enableSorting
enableColResize
suppressMenuFilterPanel

// events
onGridReady={this.onGridReady}>
Expand Down
2 changes: 1 addition & 1 deletion src/simpleReduxExample/GridComponent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class GridComponent extends Component {
enableColResize
rowSelection="multiple"
enableRangeSelection
groupColumnDef={{
autoColumnGroupDef={{
headerName: 'Symbol',
cellRenderer: 'group',
field: 'symbol'
Expand Down

0 comments on commit f8f0c21

Please sign in to comment.