You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout-gridlayout.asciidoc 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. ---
  2. title: GridLayout
  3. order: 4
  4. layout: page
  5. ---
  6. [[layout.gridlayout]]
  7. = GridLayout
  8. ifdef::web[]
  9. [.sampler]
  10. image:{live-demo-image}[alt="Live Demo", link="http://demo.vaadin.com/sampler/#ui/layout/grid-layout"]
  11. endif::web[]
  12. [classname]#GridLayout# container lays components out on a grid consisting of rows and columns.
  13. The columns and rows of the grid serve as coordinates that are used for laying out components on the grid.
  14. Typically a component only occupies a single cell of the grid. However, a component can also be configured to span a rectangular area consisting of multiple cells. Cell spanning is defined using the coordinates of the upper left cell and the lower right cell of the area to fill with the component.
  15. The grid layout maintains a cursor for adding components in left-to-right, top-to-bottom order.
  16. If the cursor goes past the bottom-right corner, it will automatically extend the grid downwards by adding a new row.
  17. The following example demonstrates the use of [classname]#GridLayout#.
  18. The [methodname]#addComponent()# method takes the component to be added and optional coordinates.
  19. The coordinates can be given for a single cell or for an area in x,y (column,row) order.
  20. The coordinate values have a base value of 0.
  21. If the coordinates are not given, the cursor will be used.
  22. [source, java]
  23. ----
  24. // Create a 4 by 4 grid layout.
  25. GridLayout grid = new GridLayout(4, 4);
  26. grid.addStyleName("example-gridlayout");
  27. // Fill out the first row using the cursor.
  28. grid.addComponent(new Button("R/C 1"));
  29. for (int i = 0; i < 3; i++) {
  30. grid.addComponent(new Button("Col " +
  31. (grid.getCursorX() + 1)));
  32. }
  33. // Fill out the first column using coordinates.
  34. for (int i = 1; i < 4; i++) {
  35. grid.addComponent(new Button("Row " + i), 0, i);
  36. }
  37. // Add some components of various shapes.
  38. grid.addComponent(new Button("3x1 button"), 1, 1, 3, 1);
  39. grid.addComponent(new Label("1x2 cell"), 1, 2, 1, 3);
  40. InlineDateField date =
  41. new InlineDateField("A 2x2 date field");
  42. date.setResolution(DateField.RESOLUTION_DAY);
  43. grid.addComponent(date, 2, 2, 3, 3);
  44. ----
  45. The resulting layout is shown in <<figure.layout.gridlayout>>.
  46. The borders have been made visible to illustrate the layout cells.
  47. [[figure.layout.gridlayout]]
  48. .The [classname]#GridLayout# component
  49. image::img/gridlayout.png[width=50%, scaledwidth=75%]
  50. A component to be placed on the grid must not overlap with existing components.
  51. A conflict causes throwing a [classname]#GridLayout.OverlapsException#.
  52. [[layout.gridlayout.sizing]]
  53. == Sizing Grid Cells
  54. You can define the size of both a grid layout and its components in either fixed or percentual units, or leave the size undefined altogether, as described in <<../components/components-features#components.features.sizeable,"Sizing Components">>.
  55. <<layout-settings#layout.settings.size,"Layout Size">> gives an introduction to sizing of layouts.
  56. The size of the [classname]#GridLayout# component is undefined by default, so it will shrink to fit the size of the components placed inside it.
  57. In most cases, especially if you set a defined size for the layout but do not set the contained components to full size, there will be some unused space.
  58. The position of the non-full components within the grid cells will be determined by their __alignment__.
  59. See <<layout-settings#layout.settings.alignment,"Layout Cell Alignment">> for details on how to align the components inside the cells.
  60. The components contained within a [classname]#GridLayout# layout can be laid out
  61. in a number of different ways depending on how you specify their height or
  62. width.
  63. The layout options are similar to [classname]#HorizontalLayout# and [classname]#VerticalLayout#, as described in <<layout-orderedlayout#layout.orderedlayout, "VerticalLayout and HorizontalLayout">>.
  64. [WARNING]
  65. .A layout that contains components with percentual size must have a defined size!
  66. ====
  67. If a layout has undefined size and a contained component has, say, 100% size,
  68. the component would fill the space given by the layout, while the layout would
  69. shrink to fit the space taken by the component, which is a paradox. This
  70. requirement holds for height and width separately. The debug mode allows
  71. detecting such invalid cases; see
  72. <<../advanced/advanced-debug#advanced.debug.mode,"Enabling
  73. the Debug Mode">>.
  74. ====
  75. [[layout.gridlayout.sizing.expanding]]
  76. === Expanding Rows and Columns
  77. Often, you want to have one or more rows or columns that take all the available
  78. space left over from non-expanding rows or columns. You need to set the rows or
  79. columns as __expanding__ with [methodname]#setRowExpandRatio()# and
  80. [methodname]#setColumnExpandRatio()#. The first parameter for these methods is
  81. the index of the row or column to set as expanding. The second parameter for the
  82. methods is an expansion ratio, which is relevant if there are more than one
  83. expanding row or column, but its value is irrelevant if there is only one. With
  84. multiple expanding rows or columns, the ratio parameter sets the relative
  85. portion how much a specific row/column will take in relation with the other
  86. expanding rows/columns.
  87. [source, java]
  88. ----
  89. GridLayout grid = new GridLayout(3,2);
  90. // Layout containing relatively sized components must have
  91. // a defined size, here is fixed size.
  92. grid.setWidth("600px");
  93. grid.setHeight("200px");
  94. // Add some content
  95. String labels [] = {
  96. "Shrinking column<br/>Shrinking row",
  97. "Expanding column (1:)<br/>Shrinking row",
  98. "Expanding column (5:)<br/>Shrinking row",
  99. "Shrinking column<br/>Expanding row",
  100. "Expanding column (1:)<br/>Expanding row",
  101. "Expanding column (5:)<br/>Expanding row"
  102. };
  103. for (int i=0; i<labels.length; i++) {
  104. Label label = new Label(labels[i], ContentMode.HTML);
  105. label.setWidth(null); // Set width as undefined
  106. grid.addComponent(label);
  107. }
  108. // Set different expansion ratios for the two columns
  109. grid.setColumnExpandRatio(1, 1);
  110. grid.setColumnExpandRatio(2, 5);
  111. // Set the bottom row to expand
  112. grid.setRowExpandRatio(1, 1);
  113. // Align and size the labels.
  114. for (int col=0; col<grid.getColumns(); col++) {
  115. for (int row=0; row<grid.getRows(); row++) {
  116. Component c = grid.getComponent(col, row);
  117. grid.setComponentAlignment(c, Alignment.TOP_CENTER);
  118. // Make the labels high to illustrate the empty
  119. // horizontal space.
  120. if (col != 0 || row != 0)
  121. c.setHeight("100%");
  122. }
  123. }
  124. ----
  125. [[figure.ui.gridlayout.sizing.expanding]]
  126. .Expanding rows and columns in [classname]#GridLayout#
  127. image::img/gridlayout_sizing_expanding.png[width=100%, scaledwidth=100%]
  128. If the size of the contained components is undefined or fixed, the expansion
  129. ratio is of the __excess__ space, as in
  130. <<figure.ui.gridlayout.sizing.expanding>> (excess horizontal space is shown in
  131. white). However, if the size of the all the contained components in the
  132. expanding rows or columns is defined as a percentage, the ratio is calculated
  133. from the __overall__ space available for the percentually sized components. For
  134. example, if we had a 100 pixels wide grid layout with two columns with 1.0 and
  135. 4.0 respective expansion ratios, and all the components in the grid were set as
  136. [methodname]#setWidth("100%")#, the columns would have respective widths of 20
  137. and 80 pixels, regardless of the minimum size of their contained components.
  138. [[layout.gridlayout.css]]
  139. == CSS Style Rules
  140. [source, css]
  141. ----
  142. .v-gridlayout {}
  143. .v-gridlayout-margin {}
  144. ----
  145. The root element of the [classname]#GridLayout# component has `v-gridlayout` style.
  146. The `v-gridlayout-margin` is a simple element inside it that allows setting a padding between the outer element and the cells.
  147. For styling the individual grid cells, you should style the components inserted in the cells.
  148. Normally, if you want to have, for example, a different color for a certain cell, just make set the component inside it [methodname]#setSizeFull()#, and add a style name for it.
  149. Sometimes, you may need to wrap a component inside a layout component just for styling the cell.