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
2
votes
0 answers

Gridlayout Faulty - I need to replace not add data, and I need horizontal scrolling

here's my code: public LMSPanel() { setLayout(new GridLayout(3,3,10,10)); grid = new JLabel [10]; int k = 1; while (k <= 9) { grid[k] = new JLabel("", JLabel.LEFT); grid[k].setText(""); …
David
  • 21
  • 1
2
votes
1 answer

How do I select a set of grid cells along a given angle quickly?

I have set up a grid class that contains theoretical cells. I have a method collectCells() which accepts a starting point, radians and distance as arguments. I want this method to return an Array containing all the cells that are along a given angle…
Marty
  • 39,033
  • 19
  • 93
  • 162
2
votes
1 answer

How to show file context menu in a grid with files

I've got a WPF grid in which each row represents a file on disk. What I'd like to do is; when someone right-clicks on a row to show the same context menu as Windows Explorer shows. Any ideas how to implement this? I'm hoping that it will be…
Sayed Ibrahim Hashimi
  • 43,864
  • 17
  • 144
  • 178
2
votes
3 answers

Telerik - Grid Export - Size limitations

I have been asked to review an issue with a clients website, but because it was developed by another developer I do not have access to the code itself, however their claims seem to be quite rediculous. There are 3050 rows of data in the grid, each…
Tony Cheetham
  • 877
  • 7
  • 18
2
votes
2 answers

Extjs custom grid row grouping

I met some problems with creating table using Extjs. My table has difficult structure -------------------------------------------| | | | 4 | | | 2 ---------| | | …
igor_vm
  • 23
  • 3
2
votes
1 answer

Multigrid interpolation in nonuniform grids - from coarser to finer grid points

I'm struggling to find a practical solution to my problem and would be so much glad if you could help: Given a few scattered starting point coordinates (black dots on the attached figure) on a nonuniform coarse grid pattern, I would like to have a…
La Perle
  • 31
  • 3
2
votes
1 answer

CSS Baseline Grid - why do line-heights get smaller while font-sizes get larger?

Try to adapt the zoomable baseline grid from the golden grid system: https://github.com/jonikorpi/Golden-Grid-System/blob/master/GGS.css here's the relevant CSS (unless I'm missing something): /* * * Zoomable baseline grid * type size…
jon
  • 5,961
  • 8
  • 35
  • 43
2
votes
1 answer

Does Dojo Toolkit provides CSS Column Grid Framework?

Is there a CSS grid framework available in dojo, like 960gs or prototype grid system? I have searched but found none. Thanks
Krunal
  • 2,967
  • 8
  • 45
  • 101
2
votes
5 answers

ExtJS display RowExpander on condition only

I currently have a rather big Grid and am successfully using the RowExpander plugin to display complementary informations on certain rows. My problem is that it's not all rows that contain the aforementioned complementary informations and I do not…
2
votes
1 answer

remember column width, position and (in)visible

Once again a question about extjs. I use EXT 4.0.2 and have a couple of grids. How can i store the settings for the column width and position? Everytime i load the page everything is back to basic and that starts to annoy me :) Thanks, Toby
Rick Weller
  • 1,258
  • 9
  • 35
  • 54
2
votes
1 answer

Responsive image grid. Fill in the blanks on wrap

Here is a responsive image grid I've made; http://jsfiddle.net/robflate/kMnJH/ When the grid resizes (upon browser resize) or when there are a certain number of images in the grid, it leaves empty gaps. I want to know if there is anything I can do,…
robflate
  • 177
  • 1
  • 1
  • 9
2
votes
3 answers

4x4 Word Grid - Java

How would you go about searching if a word exist in a 4x4 Grid of random letters(A-Z).Can someone lead me into the right direction of an effective way of tackling this problem. Here are the conditions: Words are formed from adjoining letter words…
cclerv
  • 2,921
  • 8
  • 35
  • 43
2
votes
1 answer

Telerik MVC Grid Custom Command Update Grid

How do you make a custom command update the telerik grid? For example below I have a button that updates the Last Name for the row to Peters via a custom command button. The action method is called, but the grid is not updated. @Html.Telerik() …
ctrlalt313373
  • 3,935
  • 7
  • 36
  • 40
2
votes
1 answer

pre selecting checkboxes in checkboxselection model+extjs

I have a grid with a checkbox selection model. I want to preselect the checkboxes based on the data store for grid. Can anyone please help me out?
spv
  • 75
  • 1
  • 9
2
votes
1 answer

extjs Event to update a Grid

I need a grid built in extjs designer to add data to the grid on an event. so I should have a function that when called with receivedMsg as Args, sends the array data to be added as a new record in the grid. I do not want it to go out and refresh a…
BAR
  • 15,909
  • 27
  • 97
  • 185