0
votes
1answer
37 views
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] IDE …
0
votes
1answer
11 views
DevExpress WPF Grid - get number of rows
Does anyone knows how to get a DevExpress WPF Grid Rows count?
1
vote
2answers
39 views
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.Fo …
0
votes
0answers
14 views
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;
0
votes
1answer
16 views
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 sit …
0
votes
1answer
48 views
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.
1
vote
1answer
15 views
WPF control-template: why specify a Grid with no ColumnDefinations/RowDefinations as the outter element?
Hi, I've been reading Programming WPF, here is one of the examples about Control Template:
<Button DockPanel.Dock="Bottom" x:Name="addButton" Content="Add">
<Button.T …
0
votes
0answers
13 views
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 …
0
votes
1answer
38 views
How do you insert a row/column in a WPF Grid?
Anyone have any suggestions on how to insert a row or column in a WPF Grid using (preferably) Visual Studio 2008?
It's no problem to add a new RowDefinition or ColumnDefinition, b …
1
vote
2answers
23 views
get the actual machine a client got from a selenium grid
Sometimes one of the machines registered under the selenium grid gets shutdown, or something similar.
Then, the grid starts reporting that it cannot start a new session.
I would l …
2
votes
1answer
27 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 ou …
0
votes
1answer
22 views
Grid sorting with persistent master sort
I have a UI with a grid. Each record in the grid is sorted by a "master" sort column, let's call it a page number. Each record is a story in a magazine. I want the user to be ab …
0
votes
2answers
47 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, …
0
votes
1answer
62 views
dojox.grid.DataGrid dojox.data.HtmlStore
It would be so slick if you could use dojox.grid.DataGrid and dojox.data.HtmlStore together. Maybe there is an easier way to get sortable tables with Dojo, but this is all I can c …
0
votes
1answer
46 views
WPF SharedSizeGroup GridSplitter Issue
I wish to use a Grid for my top level layout. The Grid will have 1 column and n rows. Each row in the Grid should also contain a Grid which shall have 3 columns and 1 row. In the s …
