Tagged Questions
A rectangular array of squares or rectangles of equal or different size, usually containing some form of data.
299
votes
29answers
154k views
jQuery Grid Recommendations [closed]
What are the most recommended jQuery grid plugins out there? I've been messing around with Flexigrid which seems to be fairly decent. Are there any other noteworthy ones out there I should be looking ...
73
votes
13answers
34k views
grid controls for ASP.NET MVC?
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 ...
38
votes
22answers
11k views
What is the best CSS grid framework?
I am evaluating CCS 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 ...
30
votes
11answers
17k 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, ...
24
votes
9answers
21k 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.
23
votes
4answers
16k 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 ...
17
votes
6answers
1k views
Any good distributed agent/service models for .NET?
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 ...
16
votes
4answers
5k 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 ...
16
votes
5answers
49k 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.
...
15
votes
2answers
8k 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 ...
12
votes
12answers
7k 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 ...
11
votes
6answers
675 views
Better responsive CSS grid
While evaluating design for a new app, thinking to use CSS grids, especially responsive grids (getting lot of traction recently) so that the site will be usable in all the screen sizes, be it desktop ...
11
votes
4answers
280 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
453 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 ...
10
votes
4answers
558 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 ...
10
votes
1answer
3k 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 ...
10
votes
3answers
7k 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" ...
9
votes
7answers
6k 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 ...
8
votes
5answers
804 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 ...
8
votes
2answers
113 views
Grid inside a StackPanel: why do auto and * behave strangely?
My google and stackoverflow search-fu have failed me, so I present to the community this question.
(This is all generated using VS2010 and .NET 4.0, in a blank default WPF Solution)
Consider the ...
8
votes
4answers
2k 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, ...
8
votes
2answers
9k 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 ...
8
votes
2answers
5k views
Silverlight (3.0): How to add cell padding to a Grid?
How to add easily a cell padding for a Grid in Silverlight? To set Margins for each cell looks very noisy.
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition ...
8
votes
1answer
4k 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>
...
8
votes
4answers
3k 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 ...
7
votes
2answers
2k 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:
/* ...
7
votes
2answers
234 views
Create a Function for Customized Tabular Representation
I use the code below get an overview of parts of my data.
What would be the best way to make a function out of the below code ?
It would take a dataList as well as some graphical options (such as ...
7
votes
8answers
5k views
Which datagrid to use for ASP.NET MVC2 project?
I am developing a commercial MVC2 app that requires a grid that has callback update in some form to support 10,000+ rows. It should also support relatively rich content (icons, multiline descriptions ...
7
votes
3answers
894 views
Finding the closest grid coordinate to the mouse position with javascript/jQuery
What I'm trying to do is make a grid of invisible coordinates on the page equally spaced. I then want a <div> to be placed at whatever grid coordinate is closest to the pointer when onclick is ...
7
votes
5answers
3k 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 />
...
7
votes
2answers
187 views
A pythonic way how to find if a value is between two values in a list
Having a sorted list and some random value, I would like to find in which range the value is.
List goes like this: [0, 5, 10, 15, 20]
And value is, say 8.
The standard way would be to either go from ...
7
votes
3answers
4k views
7
votes
4answers
2k views
How to map a point onto a warped grid
Say you have a collection of points with coordinates on a Cartesian coordinate system.
You want to plot another point, and you know its coordinates in the same Cartesian coordinate system.
...
7
votes
9answers
2k 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 ...
7
votes
4answers
4k views
Grid vs. Canvas
I'm looking for opinion on using Canvas vs. Grid panels in WPF.
I need to make classic input forms that have basically grid layouts, some may have small datagrids inside, groupboxes, but all aligned ...
6
votes
4answers
237 views
Best dynamic JavaScript/JQuery Grid
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 ...
6
votes
1answer
1k views
extjs 4 rendering tooltip on grid on tabpanel
i am working with Extjs 4 & using Designer 1.2.0
i am facing problems with grid's renderer function that i am using to display tooltip. The grid is placed in tab panel. Everything works fine for ...
6
votes
6answers
532 views
Writing a string in a spiral
I had recently participated in coding competion sponsored by an company and there was this one question which I did not understood, as to what was it asking.
Here is the question:
The string ...
6
votes
2answers
437 views
ExtJS - ComboBox width in EditorGridPanel
I have set up an EditorGridPanel with ComboBox's and it's working well. The only issue I'm having is that the width of the ComboBox seems to only expand to the width of the grid column, and not the ...
6
votes
2answers
401 views
Finding rectangles in a 2d block grid
Let's say I have a grid of blocks, 7x12. We use the colors '*','%','@' and an empty cell '-'.
1 2 3 4 5 6 7
- - - - - - - 1
- - - - - - - 2
% % - - - - - 3
% % - - - - * 4
% % - - - @ % 5
@ @ @ ...
6
votes
7answers
1k views
Drawing a grid of images with WPF
I'm trying to draw a grid of images/icons with WPF. The grid dimensions will vary but will typically range from 10x10 to 200x200. The user should be able to click on cells, and some cells will need to ...
6
votes
5answers
117 views
New to WPF, how would I create these colored bars in my form?
I'm trying to ditch Windows Forms, and learn to use WPF professionally from now on. Pictured above is a form done in Windows Forms that I'd like to recreate in WPF.
Here is the XAML I have so far:
...
6
votes
2answers
224 views
How can I reduce a grid of equal sized squares to a minimum set of rectangles?
If I have an arbitrary sized grid of equal sized squares (with no spacing between them), I need to know an efficient way to reduce these into a minimum number of rectangles, for example if each ...
6
votes
3answers
671 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 ...
6
votes
2answers
3k 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 ...
6
votes
3answers
10k 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
},...]
})
...
6
votes
7answers
291 views
What is the lightest way to make a huge chess-like grid?
I'm working on a browser-game and I can't help but wonder about what's the lightest way to make the grid/board on which the game takes place.
Right now, as a mere sample, I'll show you this:
-link ...
6
votes
2answers
19k views
Ext JS Grid Row Background Color Set
How would I go about setting the background colour of an Ext JS Grid row, mainly just the selected item(s).
Any help would be greatly appreciated.
6
votes
1answer
3k views
How do I set a Silverlight Grid layout ColumnDefinition width to “*” programatically?
So I'm creating columns dynamically for a Grid layout in Silverlight (V3.0, C#):
LayoutRoot.ColumnDefinitions.Add(new ColumnDefinition());
and you can specific that the width of the column be ...
6
votes
3answers
6k 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, ...