Questions tagged [grid]

NOT FOR CSS GRID LAYOUT. Instead use [css-grid]. This tag is ambiguous, please don't use it. For row-column layouts, use [grid-layout]. For the HPC setup, use [grid-computing]. For the R plotting package, use [r-grid]. For multi-dimensional data, use [matrix] or [array] or [raster]. For WPF-Grid control, use [wpfgrid]

In computing grid typically refers to either , or , or the plotting package , or multidimensional data //.

A is a layout which divides a specified area into a defined number of rows and columns. Visually it closely resembles a table with the key distinction being a table layout should be associated with data firstly, whereas a grid layout can include various types of content. A grid is a structure (usually two-dimensional) made up of a series of intersecting straight (vertical, horizontal, and angular) or curved guide lines used to structure content. A grid can be used to organize graphic elements in relation to a page, in relation to other graphic elements on the page or in relation to other parts of the same graphic element or shape.

(aka "Grid"), is a two-dimensional grid-based layout system that aims to do nothing less than completely change the way we design grid-based user interfaces. CSS has always been used to lay out our web pages, but it's never done a very good job of it. First, we used tables, then floats, positioning and inline-block, but all of these methods were essentially hacks and left out a lot of important functionality (vertical centering, for instance). Flexbox helped out, but it's intended for simpler one-dimensional layouts, not complex two-dimensional ones (Flexbox and Grid actually work very well together). Grid is the very first CSS module created specifically to solve the layout problems we've all been hacking our way around for as long as we've been making websites.

is the collection of computer resources from multiple locations to reach a common goal. The grid can be thought of as a distributed system with non-interactive workloads that involve a large number of files. What distinguishes grid computing from conventional high performance computing systems such as cluster computing is that grids tend to be more loosely coupled, heterogeneous, and geographically dispersed. Although a single grid can be dedicated to a particular application, commonly a grid is used for a variety of purposes.

is a low-level plotting package for .

and refer to 2-dimensional and multi-dimensional rectangular data structures.

is a 2-dimensional array of pixels.

11913 questions
3
votes
3 answers

FireMonkey grid with different controls in same column

What can you do if you want different cell controls in the same column of a grid in FireMonkey. The cell control seems to belong to the column, but there are situations (like the property editor), where some rows need a checkbox while other rows…
TheRoadrunner
  • 1,281
  • 14
  • 34
3
votes
1 answer

ListBox in Grid Row with Auto height. Scrollbar is not working

I have the following grid:
Joe
  • 2,551
  • 6
  • 38
  • 60
3
votes
1 answer

Telerik mvc grid ForeignKey column

I have a grid where first 2 columns are bound with ForeignKey (Category and Product). The value of the first dropdown dictates the value of the second. How can I reload the values of the second dropdown after the first dropdown value…
samantha07
  • 507
  • 1
  • 7
  • 21
3
votes
3 answers

HTML/CSS grid layout

How could I change this grid layout so that the second row of blocks sit just below the corresponding block above it instead of forming a completely new row? http://jsfiddle.net/AndyMP/wSvrN/ body { margin-left: 0px; margin-top: 0px; …
Andy
  • 1,422
  • 5
  • 27
  • 43
3
votes
2 answers

Animate Grid from one position to another

I have a grid of images and buttons, and I want to animate motion from one position to another (actually a few spaces to the left) automatically, but it hasn't worked. I've tried using a storyboard in xaml and programatically as in the code below,…
Omoloro
  • 342
  • 1
  • 3
  • 9
3
votes
2 answers

Let TextBox fill remaining Space in Grid

I have a ListBox that contains a Grid. The Grid has a Label Column, a GridSplitter and a TextBox Column. How can I make the Grid take up the entire Width of the ListBox and make the TextBox use the entire space of the Grid Column?
tobre
  • 1,347
  • 3
  • 21
  • 53
3
votes
2 answers

Can someone please explain the Golden Grid System grid to me?

I'm trying to do a responsive two column layout (content and sidebar) with the Golden Grid System grid and am having trouble understanding it. I really like the idea behind this system (no fixed-width, zoomable baseline, etc...) but don't know how…
roflwaffle
  • 29,590
  • 21
  • 71
  • 94
3
votes
1 answer

HTML5 CSS3 Grid Boilerplates

I have used http://foundation.zurb.com/ as a HTML/CSS/JS Grid boilerplate and liked it, I am looking to review and research as many similar boilerplate frameworks as I can, could someone point me in a the direction of any resources they may of come…
Mark Regan
  • 41
  • 2
3
votes
2 answers

How to use RecId as a foreign key in a form

I have a table of items that each reference one other item in another table. We'll say the items are people, and the related items are favorite foods. Table A: Bob:1, Sally:1, Sue:3 Table B: 1:Apples, 2:Bananas, 3:Oranges The "people" are tied to…
Brad
  • 1,357
  • 5
  • 33
  • 65
3
votes
1 answer

gridpanel key navigation on load

I have a grid panel used for searching items. It starts out empty but it's configured store loads whenever a user triggers a nearby searchfield. I'm using grid.getSelectionModel().select(0) to select the first row when it loads. But this doesn't…
egerardus
  • 11,316
  • 12
  • 80
  • 123
3
votes
1 answer

How to populate dynamically a grid on WP7?

this is my very first program in WP7, so i have some issues. I'm trying to populate a grid with an list of objects that has been bought by another method. Here what i made so far: public partial class MainPage : PhoneApplicationPage { private…
Markissimo
  • 309
  • 2
  • 9
  • 23
3
votes
4 answers

GridBagLayout weight bug?

The layout of the components in the project I'm working on didn't look correct, I suspect there's a bug in Swing. Basically, what appears to be happening is that the weightx and weighty proportions aren't being adhered to when the cells being laid…
Kevin K
2
votes
2 answers

Testing grid passability

Consider this problem: There's a square grid defined, each tile being either passable (1) or impassable (0). At first, we have a simply connected space in the grid with an impassable border, like this: We then start placing impassable obstacles of…
vedran
  • 751
  • 1
  • 5
  • 16
2
votes
2 answers

Java Drawing a game board as a grid

Hey I am trying to draw a grid. I have dreated a 2D array and I am trying to fill it with Rectangle2D's. I would like the grid to be equal squares where a character can alk on. Here is my code: public class GameWindow { public static int[][]…
user1198199
  • 75
  • 3
  • 10
2
votes
3 answers

Plotting a grid in Python

I'm trying to start 2D contour plot for a flow net and I'm having trouble getting the initial grid to show up properly. Given the number of columns and the number of rows, how can I write a function that will plot a grid so that all points in the…
bang
  • 181
  • 2
  • 3
  • 5