grid

Is editable grid available in yahoo UI..

Is editable grid available in yahoo UI.. please give me link... ...

Ext JS UX - RowPanelExpander

I have this plugin. It works great with gridPanel. But there are some problems with editorGridPanel. After editing of some row plugin stops work. Maybe someone can fix this problem? I looked at code, but cant find answer.... ...

Problem with CSS layout with wrapping text

I'm trying to replace some layouts table layouts with css layouts and have this code: <html> <head> <style type="text/css"> #grid{ border:solid; border-width:1px; border-color:#000000; width:300px; max-width:300px; min-width:300px; overflow:hidden; font-size:14px; } #grid .item{ text-align:center; w...

How to create layout for tower made of blocks

I have a tower built from blocks like this : Whole Tower is an array of Towers. Each Tower contains Box[] array containing single Box'es.What layout should I use for this and can you give me any tips on how to create it ? Would it be easier if I would create Grid[][] containing Box'es? But I guess I can't store Box object inside Grid...

Scroll to selection in an ExtJS Grid

Hey, i need to be able to scroll my ExtJS grid to the current selection but have no idea how to do this. I came across a reference in a forum to an ensureVisible method but can find no information. Can anyone make any suggestions? Thanks ...

How to create reusable WPF grid layout

I have a window with tab control and number of pages - tab items. Each tab item has same grid layout - 6 rows and 4 columns. Now, each tab item contains grid with row and column definitions, so almost half of XAML is definition of grids. How can I define this grid in one place and reuse that definition in my application? Template? User...

Presenting collection of structures of strings in grid or similar in WPF - Example? Ideas?

Hi, I have a collection of structures. The structure is just some strings. Example public struct ReportLine { public string Name; public string Address; public string Phone; ...// about 10 other strings } I can't change this part. What I want to do is display it in a simple grid or simlar in WPF. My only requirements are:...

In C#, how do you send a refresh/repaint message to a WPF grid or canvas?

How do you send a refresh message to a WPF grid or canvas? In other words, I have noticed while in debug mode, I can write code that sends a line to the display and then, if that line is not right, I can adjust it -- but the previous line is still there. Now, the code I am writing sends information to the display based on what the user ...

Which datagrid to use for ASP.NET MVC2 project?

Hi, 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 etc). Although it requires the usual paging/scrolling/sorting features it does not need support for grouping. So nothing that special. ...

Wanting a type of grid for a pixel editor

Hi, I am currently trying to develop a basic pixel editor application to build up my programming experience with Java. I am designing it so the user has several colour options on, they click on an option and then they can drag over the cells in the grid and they change colour (like a typical image editor, but with a sort of snap on to e...

WPF XAML Bind Grid

I have a custom user control that is based on a Grid control. I have a ViewModel that exposes this as a property. I would like the XAML on the view to bind to this. I am sure this must be easy but I am quite new to WPF. How is this achieved? Many thanks in advance (Edited to add more info) Example of view without binding to ViewModel....

WPF, ShowGridLines equivalent for wrap panel

I need to display a 1 pixel wide border around all wrap panel cells, kinda like excel grid. Unfortunately the wrap panel does not implement the grid ShowGridLines property. I can't put a border inside every cell because adjacent cells will have a 2 pixel border instead of 1 pixel. Since the wrap panel arranges it's layout dynamically and...

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 below to convey my problem: There are two types and one base type: public class XMoveViewModel : MoveViewModel { } public class OMoveViewMo...

Gantt view or hierarchical grid

Hi, Is there any any free Gantt view grid control or hierarchical grid view available in winforms? I require a grid that looks like an MS project task list. But it should not contain a right side calendar view as in MS project. My requirement is just to maintain hierarchical data with multiple columns. Please suggest where can I get t...

Need idea to design my grid. asp.net(c#) gridview

My DataGrid contain totally 32 columns.I need to display my first 4 column as default column. For the remaining Column i need to view using scroll bar.(not Page scroll need scroll bar inside my grid view) ...

PyQT4 QWebView not resizing correctly

I have a QWebview in a grid layout, along with other widgets. When the user resizes the window, the QWebview doesn't resize, but the other widgets do. How can I make the QWebview resize correctly? ...

grid traversal question

Possible Duplicate: Looping in a spiral Given a grid of any height and width, write an algorithm to traverse it in a spiral. (Starting at the top left and ending in the middle) without passing over previously visited nodes. Without using nested loops. ...

Auto RowDefinitions Grid with ContentControls

Hi all, I have a Page with two ContentControls loaded by a RegionManager. A List of items, and a DetailView of these items. The problem is that the grid doesn't apply the auto height what I liked to. So I want to make all the available screen size to grid.row=0. I've added my code below: <Grid> <Grid.RowDefinitions> <RowDef...

How can I create an enum using numbers?

Is it possible to make an enum using just numbers in C#? In my program I have a variable, Gain, that can only be set to 1, 2, 4, and 8. I am using a propertygrid control to display and set this value. If I were to create an enum like this... private enum GainValues {One, Two, Four, Eight} and I made my gain variable of type GainValue...

Silverlight: Binding a child grid of a grid to a child property (list) of a child propety of an object bound to the parent grid

Hi all, I am using Telerik's Silverlight grid control (RadGridView) to display a table of data (List of companies) and every row can be further expanded to show list of employees working for the company as below: +Company 1 +Company 2 -Company 3 Employee 1 Employee 2 ... I have the following classes to work with: Company ...