grid

Grid Chart using GWT

Hi, Is there any library in gwt that will create grid chart, something similar to this : http://www.eyescience.com/images/vision/amsler_grid.gif. Thank you. ...

TextBoxColumn in DevexpressGridControl (WPF)

Hello. In Windows grid is sucha a thing like DataGridViewTextBoxColumn col = new DataGridViewTextBoxColumn(); Is something like that in DevExpress GridControll for WPF?Or maybe is possible to do some workaround? ...

Change grid content depending on listbox objecttype?

Hi there. I'm making an app where I have some expanders with listboxes that contains different objecttypes depending on which expander they are filed under. Each of those expanders with listboxes has a SelectionChanged which should show something in my "Mangriddy" grid. What they show in "Maingriddy" should depend on the selectionChanged...

Sketchflow - grid datatemplate

I am trying to do something very simple with Sketchflow. Create a grid with data. I tried using a listbox, created a datasource, bound the datasource to the listbox...everything works fine....but am stuck when it comes to trying to customize how the data is laid out....i.e., i want to create a data-template for the listbox, and then bin...

MVCContrib, Html.Grid: How can I attach a row-based id to a td tag?

Here's my current view code: <% Html.Grid((List<ColumnDefinition>)ViewData["Parameters"]) .Columns(column => { column.For(c => c.ID); column.For(c => c.Name); }).Render(); %> I'd like to attach an HTML "id" attribute to each "name" td tag as such: <table class="grid"> <thead> <tr> <th>Id</th> ...

WPF: Grid layout - how can I get row and column of element with MouseMove or similar events, when cursor is over empty cell?

Hello, As I stated in title to this question - I have an WPF Grid based layout with two header rows and few empty ones. Grid has about 100 columns. I am trying to achieve the situation, in which I will be able to highlight the cell of empty row, when mouse is over it (and fire an event, when user will click this cell). I sketched my ...

How to put CheckBox into WPF Grid

Hello i put TextBox Column into WPF grid like this: DevExpress.Wpf.Grid.GridColumn col = new GridColumn(); col.FieldName = dr["FieldName"].ToString(); col.Header = dr["Caption"].ToString(); //Gets or sets the name of the column col.Name = "c"+ dr["FieldID"].ToString(); if (notGenerateColumns != null && notGener...

SelectedCells.Count and SelectedCells[0].RowIndex

Hello. In WinForms it is such a thing like: if (dataGridViewControll.SelectedCells.Count > 0) EditorForm.ID = dataGridViewControll.Rows[dataGridViewControll.SelectedCells[0].RowIndex].Cells[0].Value.ToString(); Does anyone knows how to do such a tricks in WPF grid?I mean SelectedCells and SelectedCells[0].RowIndex].Cells[0].Value...

How to get row index of the selected cell in WPF grid

Does anyone knows how to get row index of the selected cell in DevExpress WPF grid? In WinForms it was something like that: dataGridViewControll.SelectedCells[0].RowIndex; ...

How to display a matrix in Html

Hi. I have 3 classes: class R{ string NameR;} class A{ string NameA;} Class RP { R objR; A objA; bool result; } I use NHibernate so in DB I have a table RP: [Id] [int] IDENTITY(1,1) NOT NULL, [Result] [bit] NULL, [RId] [int] NULL, [AId] [int] NULL I need to display in my view a matrix like this: __ A1 A2 A3 R1 1 ...

Cluster "Virtual Machine" with PBS

Hi, we are sending jobs using PBS to an external cluster and we get sometimes errors. For us this is hard to debug because we can not easily contact the administrator and so on. I thought about the possibility of some kind of Virtual Machine but which is a "Virtual Server" with PBS installed there, so I can play all games and test my jo...

How to create boolean column (WPF DevExpress Grid)

Hi, does anyone knows how to create a boolean column for WPF DevExpress Grid. A similar text column is generated like: DevExpress.Wpf.Grid.GridColumn col = new GridColumn(); But how to create a boolean column, so that the check box would be appear on that column..? ...

DevExpress WPF Grid - get number of rows

Does anyone knows how to get a DevExpress WPF Grid Rows count? ...

How to add a treeview in a particular cell of a datagrid in asp?

Hi. I am working on something where I need to populate a datagrid with treeview in particular cell. I have been trying for so long, but have been unable to do so. I need to do all this in the code behind. Can anyone suggest with examples. Thanks a lot in advance. ...

WPF resizing TextBlock

I have a textblock in a grid in WPF. I want the text to dynamically size (font) when resized. At the moment textboxes, comboboxes do this, but the the textblock stays the same. Is it possible? ...

Add grid column dynamically in xaml

Is there any way I can add grid column dynamically in xaml (e.g. using trigger/datatrigger)? The case is that I want to add/remove grid column depending on the Visibility property that is binded to that grid. ...

Grid and columnDefinition

I am having a Grid in WPF application. I want to display all the text block on the first column in the grid to be aligned to the right. so I thought I could do it with ColumnDefinition and Style like this: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition> <ColumnDefinition.Resources> <Style Targe...

Text wrapping, grid and star sizing

I have some text data that I want to display in a grid, with three columns, the middle column being twice as wide as the other two, taking up the full width of the grid. The text is long and needs to be wrapped. What I can't get to work (and from other queries here in the past, I see others have had similar problems) is getting word wrap...

Style Dojox Grid Row depending on data

Hi Folks, iam trying to style an Row inside an DojoX (1.2.3) Grid depending on values from the grid. GridLayout: var view1 = { noscroll: true, rows: [{ field: 'TASK_ID', name: 'ID', width: '80px', get: this.getColor ...

How can I divide the globe in to small grids such that it allows me to assign each lat/long location to a grid?

In order to calculate the nearest locations that are represented by latitude/longitude, I was considering dividing the map into small grids, approximately 100x100 meter grids. Essentially each point would be assigned to a grid. I understand that I could instead also use spatial indexes with MySQL etc, but am planning to use a non-relati...