diff --git a/src/App.jsx b/src/App.jsx
index 9337a45..c6922cf 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -45,7 +45,7 @@ class App extends Component {
this.setExample("dynamic")}>Dynamic React Component Example
this.setExample("rich-dynamic")}>Dynamic React Components - Richer Example
this.setExample("editor")}>Cell Editor Component Example
- this.setExample("floating-row")}>Floating Row Renderer Example
+ this.setExample("floating-row")}>Pinned Row Renderer Example
this.setExample("full-width")}>Full Width Renderer Example
this.setExample("group-row")}>Grouped Row Inner Renderer Example
this.setExample("filter")}>Filters Component Example
diff --git a/src/floatingRowExample/FloatingRowComponentExample.jsx b/src/floatingRowExample/FloatingRowComponentExample.jsx
index 21bf730..c5f5d51 100644
--- a/src/floatingRowExample/FloatingRowComponentExample.jsx
+++ b/src/floatingRowExample/FloatingRowComponentExample.jsx
@@ -13,8 +13,8 @@ export default class FloatingRowComponentExample extends Component {
rowData: this.createRowData(),
columnDefs: this.createColumnDefs(),
- topFloatingRowData: [{row: "Top Row", number: "Top Number"}],
- bottomFloatingRowData: [{row: "Bottom Row", number: "Bottom Number"}]
+ pinnedTopRowData: [{row: "Top Row", number: "Top Number"}],
+ pinnedBottomRowData: [{row: "Bottom Row", number: "Bottom Number"}]
};
this.onGridReady = this.onGridReady.bind(this);
@@ -55,7 +55,7 @@ export default class FloatingRowComponentExample extends Component {
for (let i = 0; i < 15; i++) {
rowData.push({
- row: "Row " + i,
+ row: "Rou " + i,
number: Math.round(Math.random() * 100)
});
}
@@ -67,14 +67,14 @@ export default class FloatingRowComponentExample extends Component {
return (
-
Floating Row Renderer Example
+
Pinned Row Renderer Example