CSSGrid
Description
The CSS Grid Layout Module offers a grid-based layout system, with rows and columns, making it easier to design web pages without having to use floats and positioning.
While regular controls (such as Buttons and Labels) can be added directly to a CSSGrid, there is a special control called CSSGridItem which is used to define sections within the Grid. CSSGridItems can be combined to make irregular sections in the CSSGrid. In the above example, the top row of the CSSGrid has been merged into a single control called Header.
The CSSGrid control can be used as a wrapper for other controls you have set up in your project. Add them to the Design Screen as usual, then right click in a CSSGrid and use Add Child. The control will then move into the CSSGrid. If you reposition the CSSGrid, the included controls ("children") will move with it. Use right click Remove Child to take a child out of a CSSGrid.
CSSGrids can contain other CSSGrids.
To add a CSSGrid control to your app, choose the CSSGrid icon in the Toolbar, then position it on the Design Screen. Use the Property Editor to set the properties you need. Right click in the CSSGrid to add children.
At runtime, controls can be added as children to the CSSGrid or CSSGridItems using the addChild() function: CSSGrid.addChild(Button1)
.
Here are some useful resources for learning more about using CSDGrid:
- https://www.w3schools.com/css/css_grid.asp
- https://css-tricks.com/snippets/css/complete-guide-grid/
- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout
alignContent and justifyContent
The alignContent and justifyContent properties define how the CSSGrid will look. Both have the same possible values.
To see their effect, run the CSSGrid sample which comes with AppStudio. It has Select boxes which let you play with both settings so you can see the effect.
start | The items are packed flush to each other toward the start edge of the alignment container in the cross axis |
end | The items are packed flush to each other toward the end edge of the alignment container in the cross axis |
center | The items are packed flush to each other toward the center of the alignment container along the cross axis. |
stretch | The items are shown so that the combined size exactly fills the alignment container along the cross axis. |
space-around | The empty space before the first and after the last item equals half of the space between each pair of adjacent items. |
space-between | The first item is flush with the main-start edge, and the last item is flush with the main-end edge. |
space-evenly | The spacing between each pair of adjacent items, the main-start edge and the first item, and the main-end edge and the last item, are all exactly the same. |
Properties
FlexBox Properties
alignContent | The align-content property is used to align the whole grid vertically inside the container. See above for options. | ||||||||
gridTemplateColumns | Defines the line names and track sizing functions of the grid columns. example: auto auto auto |
gridTemplateRows | Defines the line names and track sizing functions of the grid rows. example: auto auto auto |
gridTemplateAreas | Specifies named grid areas. Each line of the grid has a list of area names. The line are grouped by single quote signs. example: example: 'header header header header header header' 'menu main main main right right' 'menu footer footer footer footer footer' |
gridColumnGap | Sets the size of the gap between an element's columns. Can be 'normal', px, %, etc. | gridRowGap | Sets the size of the gap between an element's rows. Can be 'normal', px, %, etc. |
Other Properties
Standard properties are supported, plus:
addChild(control) | control is added to the Control. Runtime. |
attributes | A list of HTML attributes. To prevent jQuery Mobile from styling the element, use data-role=none. Attributes are separated by spaces. Design time. |
center | Centers the contents, horizontally and vertically. Only works if HTMLTag is 'div'. |
class | List of CSS classes to apply to the element. Class names are separated by spaces. Design time. |
content | The text to use in between the HTML tags. Can be text or HTML. Design time. At runtime, use .innerHTML. |
HTMLTag | The HTML tag of the control. Common values are div, button, text, ol, etc. For example. if value is 'button', then this HTML will be created: <button>content</button>. Design time. |
innerHTML | The text to use in between the HTML tags. Can be text or HTML. Run time. At Design Time,, use content. |
position | How children positioned. Default is 'relative': elements are positioned relative to each other and the size of the FlexBox. With 'absolute', controls are positioned within the FlexBox set by width and height. Other options are 'fixed' and 'static'. Design time. |
style | A list of style properties, each in the form styleName:value; Example: "height:40px; width:100px".Design time. |
Events
Standard events are supported.
Examples
Change the color of the text
FlexBox1.style.color = "red"