grid

ExtJS Grid JSON Store Proxy Error

Hi i am working on displaying a ExtJS Grid. I got everything correct except the part about proxy with in the Json store. When I try to display it throws an error. I figured out that i need to do something in the store but not sure what. the variable list data has the Json Array string. Please any help is really appreciated. thanks t...

Dojo Grid Template

Hello, In asp.net the DataGrid supports templates. You can provide your own template and have the grid fill the data in your template. With Dojo Grid, it seems like I can't make my own template outside of the the rigid simplistic cell style grid that Dojo provides. Does anyone know a way to use a custom template with Dojo Grid? Specif...

GWT UiBinder: Add Mouse Handler to Panel or Grid

I can't find a way to add a Mouse Handler to a GWT Panel or a Grid while using UiBinder. I basically need a way that I can detect the following over a Grid: Detect what cell the event is happening in. Detect Mouse Up Event Detect Mouse Down Event Detect Mouse Out Event Detect Mouse Over Event I had planned to try and do this with th...

ExtJS reset Search field

Hi, I am using a grid with a Grid Search plugin (http://extjs.eu/docs/?class=Ext.ux.grid.Search) I keep hiding and showing this grid every time the user press a button. I would like to reset the search field of the plugin every time the grid is displayed. What happens now is that the user clicks, the grid is shown and the user can sear...

ASP.NET: Question about the column-line-wrapping feature in gridviews

I have a ASP.NET gridview (embedded in a DIV) with several columns. For some columns line wraps are definied and for some not(with ItemStyle.Wrap = true/false). For all columns ItemStyle.Width is set to a specific value. Now I am wondering, that there is a line wrap in a column, where ItemStyle.Wrap = false. What could be the reason for ...

Spanning a Listbox in the WPF grid based on a condition

I was wondering how to increase the span of a listbox control for a certain criteria in WPF Grid. I have a textbox wherein the user enters a string and based on the presence of the string in a collection, the listbox should become visible and show the results in it by spanning across the columns of the grid. This listbox is actually a pa...

Delphi Grid Visible Item

HI all, I am working with Delphi 7. I am facing a problem with Grid. My Grid having 100 rows, I am appending some more after that. For example, I am selected item is on 1oth. The grid shows 20 items on screen at a time. I scrolled the grid to downward. I reached last one. Here grid's Itemindex= 10; Please note the selected item is no...

How to assign a array to grid in extjs

Hi, My extjs grid will be refresh after a few seconds with data loaded from server (thru jQuery). I am new to extjs. Please show me how to do that. Thanks. ...

WPF Close button not working when in Grid

Hello. When I place Button in grid and add to is's click action: this.Close(); It's not working. I want to be able to ask user before exit so I want to use Close(). I don't want to use Application.Shutdown(); How to solve it. ...

Best way to implement margin between WPF/SL grid columns/rows

Hi all What's the best way to add margin between columns or rows in a WPF or Silverlight grid? Add fixed width/height columns/rows to the grid Add margin to the grid child controls Anything else? Thanks in advance ...

Extjs - Ext.grid.RowNumberer

Hi, Is there any way to show my autoincreament (int) inside - Ext.grid.RowNumberer? Thanks ...

dynamically generating an Enumerable object of a specific type from a string representation of the type

I'm trying to design a solution in MVC in which a string representation of a class is passed to the controller which should then build a grid with all the data belonging to that class in the DB. (I'm using an ORM to map classes to tables). //A method in the Model that populates the Item Property foreach (MethodInfo method in...

ERLANG - wxGrid register

Im having some trouble with the erlang wx module. My program runs as follows: Server = wx:new(), Frame = wxFrame:new(Server, -1, "" [{size,{700, 600}}]), %%%REFERENCE TO WINDOW Panel = wxPanel:new(Frame), %%% REF TO PANEL IN FRAME Then I pass Panel to another process and try to create a Grid XreportZ = wxGrid:new(Panel, 24, [ {p...

How can one dynamically modify row and column definitions of a WPF grid?

I have two dimensional data with varying number of rows and columns and must display it to the user for editing. The format of the data itself is essentially described by a list of row and column descriptors with a header text for each row or column. I derived a control from Grid that has two properties for the row and column descriptor...

cxGrid: how to cast a cell to a combobox-object

hi @ all, i have a problem with my cxgrid. in my cxgrid there a different rows and columns which have comboboxes as properties. but how can i cast a special cell value to a combobox-object? for example: i want to set the itemindex of the combobox in row 1 and column 2 to 0. thanks! ...

ExtJs Grid acting very strange

So I have two pictures of the weirdness that is occuring As you can see in the picture above, the scroll bar on the right hand side is being cut off a little bit by the screen, and even when you scroll to the right, you don't get the bar back, it remains cut off. Here is the other scenario: Here, you can see that when I scroll down ...

GridFieldManager will not span the entire screen width.

Ok, I'm developing for the blackberry Bold 9700 and I'm trying to get a 1X4 grid (1 row, 4 columns) to span the entire width of the blackberry screen, but it keeps coming up short. I mean, the grid is aligned to the left by default, which is fine if I can get the whole grid to span the entire width (it won't matter then). Can some develo...

Empty message in gridPanel

I'm using Extjs gridPanel to display data. I want to show "No data..." message in gridPanel when no data available. How to do this ?. I tried emptyText property but its not worked. I think emptyText is for gridView not for gridPanel. Please help me how to show empty data message in gridPanel.(I'm using gridPanel not grid View) ...

WP7 silverlight grid

In order to learn silverlight on WP7 I'm playing with it around and well, I can't say I'm having sweet times here. I'm developing a simple, yet ugly Mine game (like windows's ^^). The problem is that I'm gonna use a button for each case on the mines board, but I can't manage to find a way to preview a grid with cells containing my butto...

WP7 Silverlight grid not showing content

Hi guys, It's been 2 hours of struggle against SL grid on WP7. I build my grid using the following code: public void initUIBoard() { int x, y; Button b; for (x = 0; x < mine.cRows; x++) { RowDefinition rd = new RowDefinition(); rd.Height = new GridLength(20); ...