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
4
votes
3 answers

Moving controls in a gridpanel with Delphi

In a previous question here I asked about drag n drop within the gridpanel. Drag N Drop controls in a GridPanel The question I have next is that I am having weird behavior whenever I try to move controls diagonally when they are near other…
Logman
  • 654
  • 1
  • 7
  • 16
3
votes
0 answers

Assistance needed: Keyboard navigation in ExtJS GridPanel - GroupingView

I'm currently working on converting my public facing ExtJS (actually Ext.NET) app to allow keyboard navigation with clear focus indication. So far I've managed to get a TabPanel, and a basic GridPanel (almost) working, with a custom re-work of the…
AndyPC
  • 113
  • 6
3
votes
3 answers

Extjs4 set tooltip on each column hover in gridPanel

I am getting tooltip on mouse hover by each row for current column but I am unable to get next column tooltip on continue hover on same row. But I can get it if I hover on another row & again hover any column of the previous row by…
Gopal Saini
  • 357
  • 1
  • 8
  • 17
3
votes
1 answer

How to populate Ext.js 4 grid panel cell after selecting item from autocomplete?

I am a bit uncertain about how to do the following: I've got a grid panel and on one of the fields, I've got an autocomplete and this part of my application is working fine. What I would like to do is this: Upon selecting an item from the…
DavidS
  • 2,179
  • 4
  • 26
  • 44
3
votes
2 answers

In IE7 the first click on a grid causes an ExtJS Ext.grid.GridPanel to jump to the top of the page

I have a strange issue with an Array fed ExtJS gridPanel - in IE7 only, before the rowclick event is fired, when I click on a row, the page scrolls up 2-3 rows. On repeated clicks, the page scrolls up until the page is at the top of the page. Then…
Gerhard
  • 41
  • 1
  • 3
3
votes
1 answer

C# export grid to word using template

I have created a word template with some number and text fields and I export my data from my application like this: Object oMissing = System.Reflection.Missing.Value; Object oTemplatePath = "C:\\MyTemplate.dotx"; Application…
aggicd
  • 727
  • 6
  • 28
3
votes
1 answer

Removing controls from a TGridPanel

I'm using TGridPanel to manage a number of panels. I create the panels and add them to the GridPanel using code like the following: var pnl: TPanel; begin pnl := TPanel.Create(GridPanel2); pnl.Caption := 'Panel One'; pnl.Tag := 1; …
Michael Vincent
  • 1,620
  • 1
  • 20
  • 46
3
votes
1 answer

Column header shows arrow icon after sortable is false in ExtJs grid

I have an ExtJs GridPanel in which sortable is false in all the columns. Then if I sort store by this.store.sort('Column1','ASC'); then the arrow reappers . Does sortable gets true? Is this because I am sorting the store or anything else? If it…
Aditya Korti
  • 692
  • 2
  • 12
  • 28
3
votes
1 answer

java fx: Where is the constraint property saved when using GridPane.setRowIndex(...);

I was used to Swing and I'm now beginning with FX. I came across a question which I couldn't find a answer reading the "Working With Layouts in JavaFX " Guide from Oracle and also doing some research on the internet. In the FX API Guide for the…
Blockdump
  • 33
  • 2
3
votes
1 answer

Extjs gridpanel performance issue with local data

I am working on a grid that users may load xml file and do editing via grid panel. It works well with around 200 rows. However some users may want to load 50000 records at a time. When I try to load a file with 10k records, firefox crashes and…
tkcn
  • 516
  • 3
  • 10
  • 29
3
votes
1 answer

prevent keyboard multiselect for gridpanels

I want a single select grid, at first I did not include any selection model configuration because that is the default. This works fine for mouse selections but if I key SHIFT + END it selects all records (or PAGE UP, HOME or END has a similar…
egerardus
  • 11,316
  • 12
  • 80
  • 123
3
votes
2 answers

How does GridPanel determine the size?

Here is a very simple Scala GUI test: import scala.swing._ object FirstSwingApp extends SimpleGUIApplication { def top = new MainFrame { contents = new GridPanel(30, 20) { contents ++= 1 to 600 map (_ => new Label("test")) } …
fredoverflow
  • 256,549
  • 94
  • 388
  • 662
3
votes
2 answers

ExtJS 4.1 How to change grid panel header height

I want to change the Ext.grid.Panel header height. The height of a grid panel header is forcibly set at 28px. No sass settings Header configuration on the panel did not work for me Modifying the grid columns height seems to work when configuring <…
chemoish
  • 1,210
  • 2
  • 13
  • 23
3
votes
2 answers

How to add a panel to extjs Grid Panel in rowBody

I wan't to add an ext panel instead of html in ext grid panel. What I have right now is this: features: [{ ftype: 'rowbody', getAdditionalData: function (data, rowIndex, record, orig) { var headerCt = this.view.headerCt, …
Giancarlo Corzo
  • 1,976
  • 5
  • 24
  • 36
2
votes
1 answer

100% width for a field in a toolbar

I am putting a search field in a gridpanel toolbar like this: var searchGrid = Ext.create('Ext.grid.Panel', { store: searchStore, columns: [searchColumns], hideHeaders: true, tbar: [{ xtype: 'searchfield', store:…
egerardus
  • 11,316
  • 12
  • 80
  • 123
1 2
3
22 23