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

ASP.net Grid paging with merged rows

I am currently using GridView to display tabular data. I need to merge cells in the first column that have equal values. At the moment I have code in the PreRender event to set the RowSpan property for me, and it's working fine. The problem is I…
Flash
  • 15,945
  • 13
  • 70
  • 98
2
votes
1 answer

Compute the maximum-coverage path in an Occupancy Grid

I am implementing a basic robot which uses a SLAM algorithm to produce an occupancy grid of it's environment. It is very simple with no probabilistic aspect, simply an enum to represent Empty, Occupied, Unexplored, Unreachable etc. I was wondering…
Joe S
  • 361
  • 1
  • 3
  • 12
2
votes
1 answer

Working with a Custom Image Grid

I was looking for a custom image grid and found a similar question that had a really sweet component in an answer. I downloaded the code and after some fiddling, I managed to get it to compile in DXE2. It looks really cool, but I can't get either…
skippix
  • 481
  • 1
  • 6
  • 14
2
votes
1 answer

Extjs custom reader

I have a little problem, I need to load some json data to my grid, but I have specifical json format like this: {"response":[ 76297, {"aid":66132303,"owner_id":30729520,"artist":"Шакира - Танго","title":"So objection!! I don't wanna…
Luft-on
  • 179
  • 1
  • 13
2
votes
3 answers

Searching for a pattern in Ext JS

I have a grid with certain records and a textfield above it. The textfield is connected with the grid such that each time there is a keyup event it goes to a filter function in order to only show those records that contain the characters that the…
Armaan
  • 205
  • 10
  • 21
2
votes
1 answer

Last line on a grid does not appear

I am drawing a grid in a PictureBox with GDI+ and C# with the following function and values : nbTilesX = 5; nbTilesY = 5; tileWidth = 64; tileHeight = 64; public void DisplayGrid() { Pen pen = new…
2
votes
1 answer

How to have the container adjust to a GWT grid?

I have a DataGrid with a SimplePager and when theres less than the predefined number of rows per page (in this case 15) the container will show those rows and leave a white space in between the grid and the simplePager (where the other rows would…
user1021138
  • 478
  • 4
  • 14
2
votes
2 answers

3x3 grid puzzle solving (JS)

I have an image separated into a 3x3 grid. The grid is represented by an array. Each column or row can be rotated through. E.g, the top row [1,2,3] could become [3,1,2] etc. The array needs to end up as: [1,2,3] [4,5,6] [7,8,9] And would start from…
avalore
  • 103
  • 1
  • 9
2
votes
1 answer

How to dynamically bind a Query to a grid?

I have a Query that the datasources it is set to can change dynamically. I want to take the results of this Query and bind that to a Grid, so each time it may have new fields, and data. I already added a Grid to my form, and added the Common table…
esac
  • 24,099
  • 38
  • 122
  • 179
2
votes
2 answers

EXTJS4: Approch to take for multiple Grids showing data from same store but each grid having different records

Suppose that on single page there are two grids which has same column but different records to display. There could be two solutions to it: Use same Model and Store and filter on store before rendering the grid. Potential Problem in this…
user1227794
  • 61
  • 1
  • 3
2
votes
1 answer

How do i sort a date column in EXTJS

I have a problem with my date sorter. I get my date out a XML file and looks like this: 18-10-2011 my store is this: Ext.define('blockedList', { extend: 'Ext.data.Model', fields: [{ name: 'sourceFile', …
Rick Weller
  • 1,258
  • 9
  • 35
  • 54
2
votes
3 answers

JavaScript data grid for millions of rows AND columns

I am looking for a component where I can present not only millions of rows but also a lot of columns (up to 100000). I am not looking for answers in the form of "Why would you that?". I know slickgrid can represent millions of rows, but does not…
oneiros
  • 3,527
  • 12
  • 44
  • 71
2
votes
2 answers

mvccontrib grid - How to add id

I want to add an id to the "tr" elements of the mvccontrib grid I build: so if the table contains 10 rows, the ids are 0 through to 9. One way is to add an additional item to my entity to store this value and then create…
user1079925
  • 541
  • 2
  • 8
  • 20
2
votes
3 answers

3x3 CSS grid: how to make center div the only one with a fixed height/width?

I've been struggling for awhile trying to make a 3x3 grid layout in which the center div has a fixed width & height, and the rest grow to fit the window size as needed, but I can never get the non-center divs to behave. I've found some solutions…
Gabriel
  • 587
  • 5
  • 17
2
votes
1 answer

Grid with sub-grids using slickgrid

I've got a project that requires me to use a grid that supports sub-grids. From what I can tell, jqGrid supports it, but slickgrid does not. If that's not the case, I haven't found any examples of sub-grids using slickgrid. Does anyone know if…
Dan
  • 1,222
  • 2
  • 17
  • 33