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

Row size of a Grid in Extjs 3

I would change the size of the rows of my grid.
Fares Omrani
  • 255
  • 1
  • 4
  • 22
2
votes
1 answer

Draw a snap pattern on a Grid control

I have a solution that I use but that one is not really giving me all the abilities that I need. Right now, I'm setting the background of my Grid control to a VisualBrush that contains an ellipse on its Visual container. This makes it impossible…
Gabriel
  • 464
  • 1
  • 5
  • 17
2
votes
2 answers

vsFlexGridPro7 how to enter legal lic-code in Win7-64bits

I need to maintain an old vbp (vb6) project that uses the purchased videosoft vsFlexGridPro7 ocx (not the free msFlexGrid included in vb6pro). This was working fine in WinXpPro and even in WinVista. But my pc has crashed and now the new one runs…
Guillermo
  • 57
  • 1
  • 6
2
votes
4 answers

appending to a 2D list in python where the row/col length is unknown

I am looking to flip the rows and columns on a 2D list and am running into trouble. Python won't allow a value to be assigned to an uninitialized 'cell'. I am not sure how to initialize my grid since I don't know the length ahead of time. The…
user1013550
  • 53
  • 1
  • 4
2
votes
2 answers

ExtJS4 Perfomance tuning

We are developing application in ExtJS4. using extjs4, WCF Service, with editor grid, and perfomance is very very very slow. application is running under IE 8. Can someone provide tips on tuning the perfomance.
Mutant
  • 3,663
  • 4
  • 33
  • 53
2
votes
1 answer

Python Classes in Tkinter's Grid Manager

I am having a problem with either Tkinter's GRID geometry manager or custom classes or both. Most likely both. Here's the code: import sys from tkinter import def main(): app = App() app.master.title("Sample application") …
voxeloctree
  • 839
  • 6
  • 13
2
votes
1 answer

widgets (dijit.form.Button) in dojox.data.Grid

I was able to put a dijit.form.DateTextBox and a dijit.form.ComboBox in a dojox.grid.DataGrid but not a dijit.form.Button. I have not tried with other widgets. new dojox.grid.DataGrid({ store: new dojo.data.ItemFileReadStore({data: {items:…
jleviaguirre
  • 686
  • 6
  • 10
2
votes
1 answer

Why won't my WPF controls scale when my window is maximized via touching the top of the screen in Windows 7?

I have a borderless window created for my WPF application. It resizes perfectly on the sides and corners and also when I drag it to the left or right side of the screen it perfectly scales to fit half the screen. If I use a button or other control…
user999609
  • 21
  • 1
  • 3
2
votes
1 answer

How to determine 4 nearest adjacent points in grid database around given latitude and longitude using python

I have a table named coords with the following columns |name|lat|lon|und| import sqlite3 database = sqlite3.connect('geoida.db') cursor = database.cursor() cursor.execute("select lat, lon, und from coords") results = cursor.fetchall() every line…
daikini
  • 1,307
  • 6
  • 23
  • 36
2
votes
1 answer

Telerik MVC Grid Control Additional Column with ActionLink

Hi I am Using Telerik MVC Grid Control in my MVC 3.0 Project I am trying to add Additional Column to the Grid columns.Template(e => @Html.ActionLink("Edit", "Action", "Controller", new { id = e.ID}, new { @class = "standard…
HaBo
  • 13,999
  • 36
  • 114
  • 206
2
votes
2 answers

Extjs 4.0 : how to copy a cell content in gird, I' m using Extjs 4.0

I need to select and copy the grid cell content. How to implement this? I'm new to Extjs , and I am using Extjs 4.0. Thanks for your answer!
nothing
  • 61
  • 1
  • 3
2
votes
1 answer

which WPF control can have grid as a child

I would like to know - which WPF control can have grid as a child as I want to insert grid to control (dynamically)
MoShe
  • 6,197
  • 17
  • 51
  • 77
2
votes
2 answers

Magento grid sorting on rendered column

I have created a grid in Magento and there is a column which is not coming from database instead I have computed it's value from other columns using renderer. lets say custom column in grid is total = columnA from DB - columnB from DB, have to…
sushantsahay
  • 361
  • 2
  • 7
  • 15
2
votes
2 answers

ASP.Net MVC 3.0 cache Model in Partial View if not null?

Can we cache Model in Partial View if not NULL. So that if my page make a round trip it will still have values in model. Because i have an action that returns a list of records based on search parameters. and that list is bound to the grid. This…
HaBo
  • 13,999
  • 36
  • 114
  • 206
2
votes
1 answer

How to make elements in grid to have their own specific height?

This is the following Container. You have noticed that last element in the grid (Table like Structure) looks weird. YES, it looks weird because it is taking the maximum height of the element present in that row. I just want the element to be look…
Souvik Pal
  • 43
  • 1
  • 5