grid

What is a good web-based Grid that accepts Excel clipboard data?

Any good recommendations for a platform agnostic (i.e. Javascript) grid control/plugin that will accept pasted Excel data and can emit Excel-compliant clipboard data during a Copy? I believe Excel data is formatted as CSV during "normal" clipboard operations....

UltraWebGrid: How to use a drop-down list in a column

I'm using the Infragistics grid and I'm having a difficult time using a drop-down list as the value selector for one of my columns. I tried reading the documentation but Infragistics' documentation is not so good. I've also taken a look at this discussion with no luck. What I'm doing so far: col.Type = ColumnType.DropDownList; col.Dat...

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 spacing. And they both add a lot of weight to the first page's download. Are these the best, or are there other frameworks that are more fle...

What is the best CSS grid framework that integrates with Wordpress?

Note: This question has been deemed to be a duplicate of another: http://stackoverflow.com/questions/76996/what-is-the-best-css-grid-framework Please don't answer this one. Once I figure out how to move the answers over to that question, I will delete this one. Original question: I am evaluating CSS grids for multi-column web sit...

What is wrong with my snap to grid code?

First of all, I'm fairly sure snapping to grid is fairly easy, however I've run into some odd trouble in this situation and my maths are too weak to work out specifically what is wrong. Here's the situation I have an abstract concept of a grid, with Y steps exactly Y_STEP apart (the x steps are working fine so ignore them for now) The...

Best Practice: Potentially huge Winform grid?

Hi I am writing an application in VB.NET 2008 that manages software deployment and I want to display a "deployment overview" grid. The grid will be populated with the names of each application (top row) and the name of each workstation (1st column). The remaining cells will be populated according to whether the corresponding software t...

How do I databind a ColumnDefinition's Width or RowDefinition's Height?

Under the View-Model-ViewModel pattern for WPF, I am trying to databind the Heights and Widths of various definitions for grid controls, so I can store the values the user sets them to after using a GridSplitter. However, the normal pattern doesn't seem to work for these particular properties. Note: I'm posting this as a reference quest...

jQuery Grid Recommendations

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 at? ...

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 MVC Flexgrid - Has nice column layout method Code based ASP.NET MVC GridView - simple, small, clean MVC Contrib - grid from codePlex jQue...

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 agent model would be one where developers build agents that are dispatched to a framework and the framework executes the agent somewhere in th...

Model - View - Presenter with Virtual Grid

What is the best breakdown of responsibility when using a virtual grid and the MVP pattern in a winforms application. including: Getting callbacks from the grid on user changed cell updates Callback from the grid to set the style and value of a cell given a row and column ...

Developing a distributed system as a grid

Has anyone had experience with developing a distributed system as a grid? By grid, I mean, a distributed system where all nodes are identical and there is no central management, database etc. How can the grid achieve even distribution of: CPU, Memory, Disk, Bandwidth etc.? ...

Abstract Java Grid

Hi, I'm looking for an abstract representation of a grid in Java (grid as in that thing with columns and rows of data). Do such things exist? I want to be able to sort, filter, keep track of rows, set column properties etc. I'll then be realising the grid on the web. To be clear: I've already decided on the ultimate view technology ...

Java data grid control

Are there any third party enterprisey data grid controls out there, alla JIDE Data Grid? Is there a website like torry.net that lists third party java controls? Google doesn't turn up much for and I thought there would be a lot of both considering how popular java seems to be. TIA ...

Open Source Alternative to ASP.NET Commercial Uber-Grids

The company I work for uses an ASP.NET grid component from a commercial vendor, but won't upgrade the buggy old version we have to a newer version because of cost. Are there open-source alternatives to these Uber-Grids that we could take advantage of? I'm specifically looking for hierarchical drill-down capabilities. I know there are ...

Cross-reference Distance chart in SQL Server 2008 or Excel ?

I would like to cross-reference construct a distance chart similar to the one here (example is a road-distance cross-reference chart) and, ideally, store the data in SQL Server 2008 (preferably the Express version). It needs these properties / abilities Every column has a corresponding row with the same name (ie. not misspelled like my...

Style for web application grid

Hi, I'm working on a small bugtracking system which shows a list of bugs. For the overview I want to use a grid - now I only need a style. Of course I won't copy the whole style from anyone else, but I just want to know which type of styles you like. Do you have any other great style? What do you think about the styles on this site. ...

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 number of row and column definitions, then I loop through the cells and create the controls and set up the correct bindings for each one. ...

How do I keep the WPF GridSplitter from changing the size of my Grid?

WPF GridSplitter makes my Grid wider than my Window! I've got a WPF Grid with a GridSplitter. If I resize my columns, then I can make my grid wider than my window and non-viewable. It starts like this: But after widening the left column, I can no longer see the right column (green): What am I doing wrong? How do I keep the ...

WPF Binding to Grid Column Width

I'm attempting to bind a DependancyProperty in one of my usercontrols to the Width property of a Column in a Grid. I have code similar to this: <Grid x:Name="MyGridName"> <Grid.ColumnDefinitions> <ColumnDefinition x:Name="TitleSection" Width="100" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> ...