grid

Asp.net mvc grid with each cell having its own record

I am wondering about the most elegant solution of having a grid with each cell having its own record and specify say 3 records across 5 down for example. It is having a "tile" effect of records ...

how can we resize a row in dojo grid

Hi all, I want to resize the dojo grid row by dragging it as we can do with the column. I want it some thing like Excel row which we can resize(minimize or maximize its height), is there a way to do this in dojo grid? Thanks Faz ...

Display hierarchical XML data using DataGrid

I have an XML file such as the one shown below <root> <child1> <grandchild1> <greatgrandchild1> </greatgrandchild1> <greatgrandchild2> </greatgrandchild2> ... </grandchild1> <grandchild2> </grandchild2> <grandchild3> </grandchild3> ... </child1> <child2> <grandchil...

How to override a method in dojox _Scroller class?

Hi there, How do I override a method in dojox.grid._Scroller class from a class extending dojox.grid.DataGrid. dojox.grid.DataGrid extends dojox.grid._Grid, which requires dojox.grid._Scroller. The method of interest here is: getScrollBottom(inTop). Thanks in advance! David ...

What does RowDefinition Height="10*" mean in a XAML Grid?

I use Height="*" a bit to mean that the height of the last row should fill to the bottom of the grid. But what does "10*" mean? <Grid Name="mainGrid"> <Grid.RowDefinitions> <RowDefinition Height="100" /> <RowDefinition Height="40" /> <RowDefinition Height="10*" /> </Grid.RowDefinitions> <Grid.ColumnDefinition...

dojo grid area get unreadable

I have a dojo app making extensive use of dojo grid, after some take arround using the app all grids looks grey at all (no titles, no data, just all the area of the grids in grey). Anyone have an idea of the possible causes for it? ...

How Can I Nest Custom XAML Elements?

<Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:WpfApplication1" Title="Window1"> <Grid> <local:ElementType x:Name="FirstElementName"> <local:ElementType x:N...

J2ME - Dynamic Table/Grid with editable cells.

How can I create a table in which I can add rows and columns dynamically? How can I make cells of that dynamic table editable? I.e. I should push Edit Command button and write texts or numbers in the cell. ...

How to increase/descrease font size in Dojo DataGrid

Hi there, How can I increase/decrease the default dojo datagrid font size, should I do this in CSS or there's property I can set when extending the DataGrid class. Thanks in advance! David ...

How to calculate a grid based on 4 curved edges?

How can I calculate the points on a 2D grid where the the edges are 4 curved beziers? (see picture): ...

Why does Ext JS 3.0 break my grid filter input field?

Here's a snippet of code, inserted immediately after creating my grid, that worked fine under 2.0: var gridFilter = Ext.get(gridToolbar.addDom({ tag: "input", type: "text", size: "25", value: "", cls: "x-grid-filter"}).el); gridFilter.on("focus", function(){this.dom.select();}); Now, I get a JavaScript error on the...

How to copy cell content in dojo grid

Hi there, I have a web page displaying data using dojo datagrid. Sometimes, users need to copy contents from certain cells for further analysis, but since browser's right click event is disabled in dataGrid, what's the best way to copy the contents to the clipboard? Thanks in advance! David ...

Zend Framework Grid

Can anyone recommend a good Zend Framework friendly table/grid API? I'm developing an information management system and I need a component where I can display all/some of the records, and provide paging, search, sorting, and link to various actions. I've been looking into Dojo with (dojox.grid.Grid) and it just doesn't feel right to me...

How can I use Flex to create a data grid and use it on a web page?

I want to render a very simple Flex data grid. How do I anchor the SWF flash file in the HTML? Do I need to compile a special .swf or can I use a 'standard' data grid .swf - and just pass the data to it? ...

Gwt-Ext grid inside Gwt-Ext ColumnTree

I need to display a Gwt-Ext grid as a a node of a Gwt-Ext ColumnTree. The idea is that if the user expand an item they would see a grid with headers with items under the headers. Any ideas? ...

Dojo Table not Rendering in IE6

I'm trying to use Dojo (1.3) checkBoxes to make columns appear/hide in a Dojo Grid that's displayed below the checkBoxes. I got that functionality to work fine, but I wanted to organize my checkBoxes a little better. So I tried putting them in a table. My dojo.addOnLoad function looks like this: dojo.addOnLoad(function(){ var che...

ComponentArt: Clear a cell in a grid if it is a certain DateTime.

Hi All, I currently have a ComponentArt Grid, which has a column containing DateTime values. In the even that a certain date is used, we want to keep the cell empty. Since DateTime is a struct it cannot be null or empty. So I am looking for a way to tell the grid to leave the cell blank if this certain date is bound to the grid. Any...

Extjs - Remove newly added selected item from store

I have to remove a selected item in an editorgrid. First the store is loaded and the user can choose to add or delete blank rows to this grid which they can then edit. The problem is not with removing initial records loaded from the store. The problem comes in when I add an additional row, edit it and then choose to remove it (user may d...

WPF Grid data binding

I have a grid with just 1 row. I would like the amount of columns to be determined by the data context of the grid. For instance, if I have a list of names exposed in an ObservableCollection property called 'Names' that return "Fred", "Joe", and "Anne", I would like three columns in the grid, each with a textbox bound to each name. ...

How to toggle a WPF Grid column visibility

I'm having some trouble getting this to work in a WPF app I'm working on. Basically, what I'm after is something like the Task pane in an MMC: The app has three columns in the main part of the display. I need a column on the right side which is resizable. I presume this means using a Grid with a GridSplitter but anything that works ...