grid

How to positioning in ASP.NET Grid

Hi, I am new to .NET. I am facing a problem . My question is that I have a data grid control and I am using the asp text boxes in my grid instead of the bound field. In my grid there is a blank row at the top and user can enter the data in these text boxes and after entering the and press the enter I want that my grid is position from t...

Rich Grid (grouping, sorting, paging, etc) that work on ie6

Hi there: I m looking for a feature rich grid ( sorting, grouping, paging , ideally filtering, etc) grid that will work well under ie6. I would prefer it to be an open source solution with a big community. However the client experience is the priority. The most obvious contender so far is ExtJs or GXT. I have a .net serverside , quit...

Make wxPython grid cell display multiple lines (with CR) and word wrap simulaneously

I have frames with panels displaying large grids (11x1600 and 4x34) with the 4x34 having Very Long strings, including multiple line mini-tables and Long lines requiring word wrapping within the same cells. Cells in excess of 2000 characters. Created using Python 2.5x, wxPython 2.8x and Boa 0.6.1. wx.grid.GridCellAutoWrapStringRenderer...

what grid system does swivel.com use?

What grid library does swivel.com use? It looks pretty nice. Is it made inhouse? In other words, what good JS grid libraries are available? ...

(C#) conditional in front end with datagrid

I have a data grid and in that grid its making this call: <ItemTemplate> <%#GroupSelectorRoleListControlExtender.GenerateGroupActuator(((GroupListItem)Container.DataItem).Id, ((GroupListItem)Container.DataItem).Name)%> </ItemTemplate> I would like to do something like this: <% if (((SingleAccountGroup)Container.DataItem).N...

Looking for a good freeware tree/grid like this one in .NET

this one is written in C++. Can I use it from a WinForm application? if so, what do I have to do different to use it from a VB.NET Winform app? If not, does anyone know of a decent freeware alternative? ...

How to place rectangle in grid order?

So far, my program draws many rectangles and the locations of the rectangles are random (not nice). How can I place the rectangle in grid order so that it look appealing? ...

Looking for an PL/SQL library for 2D grid processing (each row represents one cell).

Hi, I am going to create an app for managing grid-like model - cells at [X,Y] coordinates. This model will be persisted in a RDBMS. I want to keep much of the processing right in the DB server. So I am looking for an PL/SQL library for 2D grid processing (each row represents one cell). It should know to do algorithmic things like s...

wpf grid xaml layout

I am writing my UI mostly in XAML without a wysiwyg in grids you can do <textbox Grid.Column="0" Grid.Row="0" ... when creating a grid comming from a html background i have been doing ... <textbox Grid.Column="0" Grid.Row="0"> <Label Grid.Column="1" Grid.Row="0"> <textbox Grid.Column="0" Grid.Row="1"> <Label Grid.Column="1" G...

Snap to grid effect with Quartz 2d? iphone dev

Hi there, Still an iphone dev starter but trying. I would like to have the user touch the screen at which point a pin (dot) will be placed on the view. I have accomplished this (yey) but i would like to have snap to grip effect, and can not come up with a solution. This is how i am placing that dot: CGPoint drawPoint = CGPointMak...

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 "auto" with LayoutRoot.ColumnDefinitions.Add(new ColumnDefinition() { Width = GridLength.Auto }); But how to you set it to be "*" (share with...

WPF Grid pixel alignment issues

I'm using the WPF Grid to align objects, and ran into a rather glaring issue regarding pixel alignment of columns. I tried to remove as many variables as possible, and managed to show the issue in this code: <Window x:Class="Test.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft...

ASP.NET How to pass container value as javascript argument

I am using an oBout Grid control with a template on a textbox. I would like to pass an argument to a javascript, the current row index of a grid when a user clicks on it. But the result of onClick='setGridInEditMode(<%# Container.RecordIndex %>);' /> comes out as onClick="setGridInEditMode(&lt;%# Container.RecordIndex %>)...

Need a WPF rendering tip

Hey guys. I want to make a WPF Grid in which users can drag and drop controls from one cell to another and when the user is dragging I need to draw tips on the screen, like arrows. It's as if the tips were in ANOTHER LAYER in the screen. That is, they are not drawn IN the grid I mentioned. The problem is: I don't know how to OVERLAP a...

WPF Grid - Auto sized column not collapsing when content Visibility set to Visibility.Collapsed

I have the following simpl WPf grid, two columns, a button in each column, the first column auto sized and a splitter to allow column resizing. An event handler is set up on the splitter MouseDoubleclick event. When the splitter is doulble clicked the button in the left column is collapsed. Now, as column 1 is auto sized and the conten...

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. However, the plot you're drawing on is distorted from the original. Imagine taking the original plane, printing it on a rubber sheet, and stretch...

WPF Grid of Images - Best control to use?

I'm trying to convert my VB project to WPF, and one big problem I'm having is what to do about a large GridView that contains in each cell a single image. The grid needs to be very large so is the best way to do this in WPF a datagrid, or a dynamically generated Grid control, or something else? I'm not sure which controls give the best p...

How to save the state of a dojo grid

I want the user to be able to save the state of their grid, so that their sort options, column widths (and order) are preserved for the duration of their visit. Does anyone know of a way of doing this? I have noticed that the dhtmlXGrid provides a cookie interface for doing this: http://www.dhtmlx.com/dhxdocs/doku.php?id=dhtmlxgrid%3Acoo...

How do i map points from one grid to another?

Let's say i have a 2d linear grid and a point in said grid. How do i map the point from that grid into a related non-linear grid? The red dot is the point in the regular grid and i want to know how to figure out where the point would go in a similar deformed grid (an example one is shown). I'm thinking of using the difference between ...

Is my gridview paging/sorting inefficient?

Hi, I'm using a web service which returns a list of products. I created a Grid View programmatically and used the list as the datasource. However, I can't use the Paging/Sorting methods as it causes errors since I'm not using an ObjectSource control. I handled the paging and sorting manually, but I don't know if I'm doing it efficien...