Questions tagged [gridpanel]

Gridpanel is a User Interface Element that is used as a grouping control to define the behavior of various graphical controls and forms.

Gridpanel is a User Interface Element that is used as a grouping control to define the behavior of various graphical controls and forms.

  • The grid panel is the most flexible layout container compared to other layout containers that are designed to manage more specific layout functionality.

Ref

331 questions
2
votes
3 answers

ExtJS GridPanel data tooltip

I want to add tooltip to my gridpanel's data. I want to put map on tooltip panel, I got it, but my static map's width is 600px, it overflows from tooltip's panel. I used below code, it works fine, but can not set a width to tooltip. How can I…
vtokmak
  • 1,496
  • 6
  • 35
  • 66
2
votes
1 answer

container control as a grid editor does not update values

So I have a grid with two columns, the first has just text, the second needs to have a custom control (with a checkbox and a combo box) Check the screenie: Here is a link to a screenie: The Problem: When I click update to update the row. The first…
pradeep
  • 35
  • 6
2
votes
1 answer

How to make nested JavaFX GridPanes layout correctly?

Context: I am building a JavaFX application with java1.7.0_07 and Jython. My application has a ScrollPane that contains a GridPane that contains a variable number of GridPanes. My application discards and rebuilds the innermost GridPanes each time…
davidrmcharles
  • 1,923
  • 2
  • 20
  • 33
2
votes
1 answer

c# mvc4 Ext.Net.MVC.StoreResult don't return valid result

I create StoreResult controller in MVC4 + EXT.NET library project for response to JsonReader() in GridPanel(). My controller return string Ext.Net.MVC.StoreResult instead json data. I create project in VS2012,IIS8,MVC4. Thanks for help me. // IN…
2
votes
1 answer

how to set maxValue of ext:SpinnerField at edit time of gridpanel

I am working with Ext.Net 1.5 I want to validate ext:SpinnerField at Edit time..I want to set ext:SpinnerField maxValue at runtime.
Smily
  • 2,646
  • 4
  • 23
  • 31
2
votes
1 answer

Sencha EXT JS datagrid scrollbar specifically on column?

We have a gridpanel with columns, that are displaying fine. One column in particular, is a string that can be very large. We want to add a scrollbar to this one column only to accommodate the large wall of text. Can this be done with Sencha EXT…
user1700945
  • 125
  • 2
  • 10
2
votes
1 answer

How to create a ExtJS 4 mouseenter / mouseleave state for (grid.feature.Grouping)?

I want to create a mouseenter / mouseleave state for hovering over group headers. There doesn't seem to be any hover events being thrown within the Ext.grid.feature.Grouping class. Mouse enter, of the grouping header, would change the ^ to…
chemoish
  • 1,210
  • 2
  • 13
  • 23
2
votes
1 answer

Extjs 3.3.3 Grid - Disable grid rows

My scenario is, i need to disable the extjs grid panel and enable the scroll bar even when the grid is disabled. I can disable the grid using 'disabled:true' of GridPanel, but this property disables the vertical scroll bar of grid also. Here i need…
AJJ
  • 3,570
  • 7
  • 43
  • 76
2
votes
1 answer

javafx 2 gridpane rows overlap when using percentHeight

I am trying to layout my screen in JavaFX and have trouble using GridPane. I have 2 rows - one of them is set to have percentHeight of 80 and the other of 20 but what I'm seeing is that one row is overlaping the other here is a little illustration…
bennyl
  • 2,886
  • 2
  • 29
  • 43
2
votes
3 answers

How to export ExtJS GridPanel to Excel?

I want to export my GridPanel to Excel. I searched too many times but I couldn't find any acceptable solution. Can you help me about this problem? P.S.: I use ExtJS 3.2 and 3.3.1
vtokmak
  • 1,496
  • 6
  • 35
  • 66
2
votes
3 answers

How to hide body of gridpanel?

My grid have some docked toolbars and i want to hide only grid body. I tried to hide like this: mygrid.body.hide(); rows disappeared but container height not changed. So instead grid rows I got empty space.. So how can I collapse and expand…
Vytautas
  • 3,509
  • 1
  • 27
  • 43
1
vote
1 answer

ExtJS 3.4 add button at the bottom of a grid

I'm new to ExtJS and try to add a button at the bottom of the grid. This button will open a modal dialog to select more persons. I don't know how to add this button after the grid. Do I have to use another component than GridPanel? Can somebody help…
user886091
  • 25
  • 3
  • 7
1
vote
1 answer

Ext JS Grid doesnt fill panel even with 'fit' layout

I'm trying to get a grid to occupy the entire space within a panel and after having searched through this forum i read that a fit layout should help with such a case. However, i'm still having problems getting it to do so. { …
Armaan
  • 205
  • 10
  • 21
1
vote
2 answers

Problems reproducing Ext.net examples

I am trying to reproduce the GridPanel example(http://examples.ext.net/#/GridPanel/ArrayGrid/Simple/) but I got the following error message: Type 'Ext.Net.Store' does not have a public property named 'Model'. Source Error: Line 38: …
Rodney
  • 33
  • 10
1
vote
2 answers

Delete row(s) from grid depending on value with button

I need to delete some rows depending on the value of the columnStatus. I tried the code but nothing happens. For example, I have 6 rows with values (1,1,3,2,4,3) and I want to delete rows with status 2,3 and 4 resulting in only two rows left, row 1…
Danny
  • 221
  • 1
  • 6
  • 18