AG-1329 Update examples
This commit is contained in:
@@ -3,6 +3,8 @@ import {connect} from "react-redux";
|
||||
|
||||
import {AgGridReact} from "@ag-grid-community/react";
|
||||
|
||||
import {ClientSideRowModelModule} from "@ag-grid-enterprise/all-modules";
|
||||
|
||||
class FxQuoteMatrix extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
@@ -71,6 +73,8 @@ class FxQuoteMatrix extends Component {
|
||||
// callbacks
|
||||
getRowNodeId={this.getRowNodeId}
|
||||
|
||||
modules={[ClientSideRowModelModule]}
|
||||
|
||||
// events
|
||||
onGridReady={this.onGridReady}>
|
||||
</AgGridReact>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import React, {Component} from "react";
|
||||
|
||||
import {AgGridReact} from "@ag-grid-community/react";
|
||||
import {ClientSideRowModelModule} from "@ag-grid-enterprise/all-modules";
|
||||
|
||||
import map from "lodash/map";
|
||||
import difference from "lodash/difference";
|
||||
@@ -160,6 +161,8 @@ export default class extends Component {
|
||||
}}
|
||||
rowSelection="single"
|
||||
|
||||
modules={[ClientSideRowModelModule]}
|
||||
|
||||
// callbacks
|
||||
getRowNodeId={this.getRowNodeId}
|
||||
|
||||
|
||||
@@ -2,6 +2,7 @@ import React, {Component} from "react";
|
||||
import {connect} from "react-redux";
|
||||
|
||||
import {AgGridReact} from "@ag-grid-community/react";
|
||||
import {ClientSideRowModelModule} from "@ag-grid-enterprise/all-modules";
|
||||
|
||||
class TopMoversGrid extends Component {
|
||||
constructor(props) {
|
||||
@@ -75,6 +76,8 @@ class TopMoversGrid extends Component {
|
||||
deltaRowDataMode
|
||||
getRowNodeId={this.getRowNodeId}
|
||||
|
||||
modules={[ClientSideRowModelModule]}
|
||||
|
||||
// events
|
||||
onGridReady={this.onGridReady}>
|
||||
</AgGridReact>
|
||||
|
||||
@@ -8,6 +8,9 @@ import {Provider} from "react-redux";
|
||||
import StoreService from './services/StoreService';
|
||||
import TraderDashboard from "./components/TraderDashboard.jsx";
|
||||
|
||||
import "@ag-grid-enterprise/all-modules/dist/styles/ag-grid.css";
|
||||
import "@ag-grid-enterprise/all-modules/dist/styles/ag-theme-fresh.css";
|
||||
|
||||
let store = StoreService.STORE;
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
|
||||
Reference in New Issue
Block a user