changes to match v3.3.0

This commit is contained in:
Ceolter
2016-02-08 14:05:08 +00:00
parent 3826856000
commit eb642411b6
3 changed files with 5 additions and 5 deletions

View File

@@ -34,7 +34,7 @@
"dependencies": {
"react": "0.14.6",
"react-dom": "0.14.6",
"ag-grid": "~3.3.0-alpha.1",
"ag-grid-react": "3.3.0-alpha.1"
"ag-grid": "3.3.x",
"ag-grid-react": "3.3.x"
}
}

View File

@@ -11,7 +11,7 @@ export default class ColDefFactory {
createColDefs() {
var columnDefs = [
{headerName: '', width: 30, checkboxSelection: true, suppressSorting: true,
{headerName: '#', width: 30, checkboxSelection: true, suppressSorting: true,
suppressMenu: true, pinned: true},
{
headerName: 'Employee',

View File

@@ -4,8 +4,8 @@ import ReactDOM from 'react-dom';
import React from 'react';
import MyApp from './MyApp.jsx';
// is there a better way of doing this?
import 'ag-grid-root/styles/ag-grid.css';
import 'ag-grid-root/styles/theme-fresh.css';
import 'ag-grid-root/dist/styles/ag-grid.css';
import 'ag-grid-root/dist/styles/theme-fresh.css';
// waiting for dom to load before booting react. we could alternatively
// put the index.js reference at the end fo the index.html, but i prefer this way.