Consider using [grid-layout] or [grid-computing] instead.

learn more… | top users | synonyms

136
votes
12answers
62k views

grid controls for ASP.NET MVC? [closed]

If you are using ASP.NET MVC how are you doing grid display? Rolled your own? Got a library from somewhere? These are some of the known grid display solutions I have found for ASP.NET MVC ASP.NET ...
66
votes
24answers
40k views

What is the best CSS grid framework? [closed]

I am evaluating CSS grid frameworks for web sites, blogs, and CMS-based sites, and have looked at Blueprint and Yahoo's YUI. They both look good, but it is not so easy to change the column sizes or ...
48
votes
10answers
44k views

Resize jqGrid when browser is resized?

Is there any way to resize a jqGrid when the browser window is resized? I have tried the method described here but that technique does not work in IE7.
37
votes
7answers
20k views

WPF: Grid with column/row margin/padding?

Is it easily possible to specify a margin and/or padding for rows or columns in a WPF Grid? I could of course add extra columns to space things out, but this seems like a job for padding/margins (it ...
35
votes
11answers
24k views

Good ASP.NET excel-like Grid control?

We are looking for an ASP.NET compatible data grid that allows for multi-line editing similar to Excel or a WinForms data grid. It must also support very basic keyboard input (tab, arrow keys, ...
29
votes
4answers
25k views

How to populate a WPF grid based on a 2-dimensional array

I have a 2-dimensional array of objects and I basically want to databind each one to a cell in a WPF grid. Currently I have this working but I am doing most of it procedurally. I create the correct ...
28
votes
2answers
15k views

Spacing between child controls in WPF Grid

I have a set of Key/Value pairs I want to display on a WPF Window. I'm using a grid to lay them out like so: <Grid Margin="4"> <Grid.ColumnDefinitions> <ColumnDefinition ...
25
votes
4answers
14k views

What does the WPF star do (Width=“100*”)

What does exactly the star in size terms in WPF mean?
23
votes
1answer
12k views

GridView VS GridLayout in Android Apps

I'm new to Android.. I have to use Grid to implement Photo Browser in Android. First I want to know the difference between GridView and GridLayout. Currently I'm using GridView to display the ...
22
votes
5answers
66k views

Styling a WPF layout grid background (of each cell, row, column)

I would like to know if there is any way to style a WPF layout grid's cells, rows and columns. I've been trying to find any information and the few mentions I've found have not been that informative. ...
21
votes
4answers
16k views

WPF: Hide grid row

I have a simple WPF form with a <Grid> declared on the Form. In this Grid I then have a bunch of Rows: <Grid.RowDefinitions> <RowDefinition Height="Auto" MinHeight="30" ...
19
votes
5answers
2k views

Any good distributed agent/service models for .NET? [closed]

I'm looking for tools that implement the distributed agent/service model ... I guess we could also call this grid or cloud computing, but I'm not sure the term is exactly analagous. A distributed ...
18
votes
3answers
18k views

Word-wrap grid cells in Ext JS

(This is not a question per se, I'm documenting a solution I found using Ext JS 3.1.0. But, feel free to answer if you know of a better solution!) The Column config for an Ext JS Grid object does not ...
18
votes
2answers
3k views

How can I obtain an 'unbalanced' grid of ggplots?

With grid.arrange I can arrange multiple ggplot figures in a grid to achieve a multi-panel figure by using something like: library(ggplot2) library(grid) library(gridExtra) generate ...
17
votes
2answers
11k views

What does RowDefinition Height=“10*” mean in a XAML Grid?

I use Height="*" a bit to mean that the height of the last row should fill to the bottom of the grid. But what does "10*" mean? <Grid Name="mainGrid"> <Grid.RowDefinitions> ...
17
votes
1answer
8k views

WPF Dynamic Layout with ItemsControl and Grid

I am creating a WPF form. One of the requirements is that it have a sector-based layout so that a control can be explicitly placed in one of the sectors/cells. I have created a tic-tac-toe example ...
16
votes
2answers
9k views

Matplotlib: draw grid lines behind other graph elements

In Matplotlib, I make dashed grid lines as follows: fig = pylab.figure() ax = fig.add_subplot(1,1,1) ax.yaxis.grid(color='gray', linestyle='dashed') however, I can't find out how (or even if it ...
15
votes
4answers
14k views

jQuery Spreadsheet/Grid plugin with copy/paste from/to Excel

I am looking for a jQuery plugin for something like spreadsheet or grid. I have found a lot of jQuery Grid plugins and one spreadsheet plugin. But I would like functionality with copy/paste cells ...
15
votes
12answers
12k views

What is the best library for Java to grid/cluster-enable your application?

This is the ability to run your application on a cluster of servers with the intent to distribute the load and also provide additional redundancy. I've seen a presentation for GridGain and I was very ...
13
votes
3answers
20k views

ExtJS 4 Change grid store on the fly

Is it posible to change grid's store in ExtJS 4? For example, i have two models: User = Ext.define('User',{ extend: 'Ext.data.Model', [...], hasMany: 'Product' }); Product = ...
13
votes
2answers
12k views

Bottom borders on WPF Grid

I've got a pretty simple question regarding the WPF Grid Control. I'd like to set a bottom border on each row in the grid, but can only find how to put all 4 borders around each cell.. my code is ...
13
votes
2answers
5k views

Grid Layout support in android API 10

I had developed an app with target API as 15. The layout includes a grid layout. Now when i am changing the Target API to 10 I am getting issues with the grid Layout and another element 'space'. ...
13
votes
4answers
23k views

Best dynamic JavaScript/JQuery Grid [closed]

I'm working with JavaScript, JQuery and HTML. UI Of my project is completely dynamic. I am looking for a dynamic JavaScript/JQuery Grid which supports following features. Can anybody tell me is there ...
13
votes
1answer
8k views

Empty message in gridPanel

I'm using Extjs gridPanel to display data. I want to show "No data..." message in gridPanel when no data available. How to do this ?. I tried emptyText property but its not worked. I think ...
13
votes
9answers
11k views

In WPF, has anybody animated a Grid?

I have 2 columns in a Grid. When I click a button, I want the first column to animate to the left from it's current position to 0. So, in effect, it collapses and I'm left with just viewing a single ...
12
votes
4answers
5k views

WPF - How can I make a brush that paints graph-paper-like squares?

How might I create a brush that paints a regular, repeated grid of 1-unit thick lines spaced evenly in both the horizontal and vertical axes? Imagine graph paper, if you will. Ideally the solution ...
12
votes
2answers
322 views

Arrangement of large number of plots and connect with lines in r

I have a large number of small plots need to placed in a bigger plot canvase and arrange small plots into and connect them with lines. A small example will look like this: A to L are independent ...
12
votes
2answers
7k views

960 grid's clearfix vs HTML5 Boilerplate's clearfix - What's the difference?

960 grid's clearfix vs HTML5 Boilerplate's clearfix - What's the difference? Here's the clearfix found in Nathan Smith's 960 grid's css: /* ...
12
votes
3answers
4k views

Information Dashboards in R with ggplot2

I'm looking to create a static dashboard viewable in a web browser. And I'd like to create something like what Stephen Few does in his book Information Dashboard Design. (see example at bottom) ...
12
votes
4answers
933 views

wpf popup doesn't close automatically when datagrid inside popup captures the mouse

I have a popup with StaysOpen=False so I want to close it by clicking anywhere outside of popup. Inside a popup I have a DataGrid. If I open popup and then click somewhere else the popup will be ...
12
votes
2answers
328 views

Programming Challenge: Easiest way to code this grid?

Made It! Look at bottom of the post!!! Smart people of the world... I'm trying to draw this grid using Processing (java), but I'm having trouble figuring out the smartest way around this. I could ...
11
votes
3answers
13k views

How to programmatically access Control in WPF Grid by row and column index?

Once Controls have been added to a WPF Grid, is there a way to programmatically access them by row and/or column index? Something along the lines of: var myControl = (object)MyGrid.GetChild(int row, ...
11
votes
5answers
20k views

How i can create context menu for extjs grid

I can create context menu for tree and attach to 'contextmenu' event. Code: contextMenu = new Ext.menu.Menu({ items: [{ text: 'Edit', iconCls: 'edit', hadler: edit },...] }) ...
11
votes
3answers
23k views

Mosaic Grid gallery with dynamic sized images

I have just received the following design for a project, for an image grid gallery, with dynamic width & height images (user submitted images). (Screenshot at the end of post) I have tried jQuery ...
11
votes
4answers
1k views

Random Tile layout

I need to place tiles on a large grid radiating from a central point in a way that looks organic and random. New tiles will need to find an open space on the grid that is touching at least 1 other ...
11
votes
4answers
483 views

A* heuristic to create Bresenham lines

From what I understand about A* heuristics and how the Bresenham algorithm works, this may not be be possible since only the current state and goal state are passed to the heuristic function. But ...
10
votes
2answers
27k views

A grid layout of icon/text buttons

I am attempting to create a 3 x 3 grid of items. Each Item consists of an ImageView on top of a TextView. Unfortunately, I am having issues getting everything to play nicely. Here is my attempt to ...
10
votes
1answer
3k views

how to apply css class to mvccontrib grid

I am using mvccontrib grid in asp.net mvc(C#) application. How can i apply css class to the grid thats created for the mvccontrib grid Attributes? I am looking to construct like: <table ...
10
votes
6answers
5k views

Using a Grid as the ItemsPanel for an ItemsControl in Silverlight 3

Is it possible to do something like this: <ListBox> <ListBox.ItemsPanel> <ItemsPanelTemplate> <Grid /> ...
10
votes
1answer
478 views

Justification of multiple legends in ggmap/ggplot2

I am trying to make a map with two legends denoting shape and colour ("Type" and "Org" in the example below), and have the legends inset. I can place the legends, but I would like them to be left ...
9
votes
2answers
11k views

Why are ActualWidth and ActualHeight 0.0 in this case?

I have a Grid inside a Canvas defined like this: <Canvas x:Name="outerCanvas"> <Grid Grid.Row="1" Name="cGrid" ShowGridLines="True" Width="{Binding Path=ActualWidth, ...
9
votes
4answers
3k views

Calculate distance between two x/y coordinates?

I would like to calculate the distance between two x/y coordinates on the surface of a torus. So, this is a normal grid that has the property that its corners and sides are 'connected'. For example, ...
9
votes
5answers
8k views

html5 vertical spacing issue with <img>

I am trying to create a layout where the vertical spacing between divs is pixel perfect. So far I've ruled out almost all the big grid systems (960.gs, Blueprint), because they have no solution at all ...
9
votes
9answers
5k views

Are there any good free/cheap Delphi grid controls?

I gave up on Delphi's DBGrid nearly a decade ago because it is simply no good. Since then, I have used Virtual TreeView which offers a lot of value but it has a few issues. Like the current state of ...
9
votes
6answers
18k views

Passing parameters to telerik asp.net mvc grid

I have a telerik asp.net mvc grid which needs to be populated based on the search criteria the user enters in separate text boxes. The grid is using ajax method to load itself initially as well as do ...
9
votes
11answers
8k views

Consistent grid headers with Flexigrid ?

So I'm trying to use the flexigrid plugin. It looks like it's going to work great aside from the fact that it looks like you have to manually set the column widths. Otherwise, the column headers do ...
9
votes
5answers
1k views

difficult HTML, JavaScript, CSS grid page

FYI, This is a simplified/generic example of what I'm working on. I'm just looking for the HTML, JavaScript, and/or CSS that can make this work. I'd prefer that this can be done without any ...
9
votes
3answers
1k views

Workaround for Grid.SharedSizeGroup in Silverlight

There is no Grid.SharedSizeGroup in Silverlight 4. What is your workaround for this issue? For example: I have a DataTemplate for ListBox.ItemTemplate consisting of a grid with two columns and I'd ...
9
votes
2answers
5k views

Excel spreadsheet like library in Swing (=improved JTable)

I'm searching for a free, open-source if possible, Java swing library that improves the existent JTable (which is very simple). I want to do an application with a spreadsheet similar to Excel one. ...
8
votes
4answers
44k views

Sort dataGridView colums in C# ? (Windows Form)

I have a datagridview that i bind from an sql table, in that dv i have those attributes: Id, Name and Price. When i set the SortMode of the Name Columns to Automatic and i click on the header of this ...

1 2 3 4 5 75