Repository: flex-asjs
Updated Branches:
  refs/heads/develop 9bd1e9ff9 -> 23403e53d


Changed DataGridExample to show use of DataGridPercentageLayout.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/23403e53
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/23403e53
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/23403e53

Branch: refs/heads/develop
Commit: 23403e53dc6472a11e82fd6ec0d1df22457159e5
Parents: 9bd1e9f
Author: Peter Ent <p...@apache.org>
Authored: Tue Oct 11 11:06:46 2016 -0400
Committer: Peter Ent <p...@apache.org>
Committed: Tue Oct 11 11:06:46 2016 -0400

----------------------------------------------------------------------
 examples/flexjs/DataGridExample/src/MyInitialView.mxml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/23403e53/examples/flexjs/DataGridExample/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DataGridExample/src/MyInitialView.mxml 
b/examples/flexjs/DataGridExample/src/MyInitialView.mxml
index 242c122..2f543e5 100644
--- a/examples/flexjs/DataGridExample/src/MyInitialView.mxml
+++ b/examples/flexjs/DataGridExample/src/MyInitialView.mxml
@@ -33,15 +33,16 @@ limitations under the License.
                
        <js:DataGrid id="dataGrid" x="20" y="30" width="400" height="300" 
change="dataGridChange()" rowHeight="30">
                <js:beads>
+                       <js:DataGridPercentageLayout />
                        <js:ConstantBinding
                                sourceID="applicationModel"
                                sourcePropertyName="productList"
                                destinationPropertyName="dataProvider" />
                </js:beads>
                <js:columns>
-                       <js:DataGridColumn label="Image" dataField="image" 
columnWidth="100" itemRenderer="products.ProductItemRenderer" />
-                       <js:DataGridColumn label="Title" dataField="title" 
columnWidth="200" />
-                       <js:DataGridColumn label="Sales" dataField="sales" 
columnWidth="100" />
+                       <js:DataGridColumn label="Image" dataField="image" 
columnWidth="25" itemRenderer="products.ProductItemRenderer" />
+                       <js:DataGridColumn label="Title" dataField="title" 
columnWidth="50" />
+                       <js:DataGridColumn label="Sales" dataField="sales" 
columnWidth="25" />
                </js:columns>
        </js:DataGrid>
                

Reply via email to