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
1 answer

Add record to grid ext js 3.4

First of all am new to Ext js. I have a ext js grid on page which uses version 3.4 of EXT JS. I uses the store.loadData to bind the grid. Now I need to insert a row without refreshing the grid(I mean append the grid); however, I find the below…
Navin Leon
  • 1,136
  • 3
  • 22
  • 44
2
votes
1 answer

Ext JS GridPanel autoHeight not working for group expand collapse

There seems to be a defect when using the autoHeight property on the gridPanel along with the grouping feature. When you set the grouping to startCollapsed the height of the grid is set to the height of the collapsed rows (which is correct) but when…
rabs
  • 1,807
  • 3
  • 18
  • 29
2
votes
2 answers

Integrating Ext.grid.panel validation and Ext.data.Model.validations

I've been learning ExtJS4 after having done quite a bit of dev in ExtJS3. I'm quite intrigued by the new class Ext.data.Models, but I would love to integrate these validations with the validation function in Ext.grid.Panel. Can anyone point me in…
Drew
  • 1,687
  • 5
  • 25
  • 46
2
votes
2 answers

ExtJS Gridpanel Column width + forcefit

I have a gridpanel that i would like to have 2 columns in. I want the first column to have a width of 100 and the second column to fill the remaining width in the gridpanel. Any ideas? EDIT sensorListPanel = new xg.GridPanel({ id:…
gberg927
  • 1,636
  • 9
  • 38
  • 51
2
votes
1 answer

ExtJs GridPanel freeze/lock multiple columns

Though ExtJs GridPanel is rich datacontrol , it has restricted columns freezing functionality. Only first column can be freezed via locked attribute. Has anyone solved this problem ? Here is my code: Ext.require(['Ext.grid.*', 'Ext.data.*',…
alekoo73
  • 779
  • 2
  • 10
  • 18
2
votes
1 answer

Ext JS grid panel with checkbox column

I've got a grid in my page with a CheckboxModel set on it. It's showing the names and checkboxes but I don't know how to bind the boolean column from the store to the column from the selection model. I've found examples using CheckColumn instead but…
Daniel Revell
  • 8,338
  • 14
  • 57
  • 95
2
votes
1 answer

Ext Js - How to Reference Store Values

I'm trying to read grid values from within a load event of my form. The ordersStore.load() loads my grid with data, but I don't get a record returned using getAt. Is there a better way to do this? Thanks. client_form.on({ actioncomplete:…
hadenp
  • 445
  • 3
  • 9
2
votes
2 answers

Paging toolbar refresh equivalent

This should be very simple but I don't have any solution yet. I am using a ExtJs v.3.3.1 I have a grid panel that allows record deletion. The grid has a paging toolbar that is attached to the panel store. The deletion process sends an ajax request…
user760955
2
votes
1 answer

Display problem when using RowEditor extension on an ExtJS GridPanel

I'm using the RowEditor extension to edit a GridPanel. My ExtJS version is 3.3.0. I need some fields to be editable, others not no be edited at all and I do this by ignoring the editor property on those columns. The problem is that when an editor is…
Giku Promitt
  • 610
  • 1
  • 5
  • 19
2
votes
2 answers

Cannot load data in an ExtJS gridpanel with loadData()

I need to periodically add new data in the grid's store. The store is defined by the following code: this.reader = new Ext.data.JsonReader({ idProperty: 'id', fields: this.lesFields }); this.ds = new Ext.data.GroupingStore({ …
Giku Promitt
  • 610
  • 1
  • 5
  • 19
2
votes
1 answer

Keep displayField on Ext.form.Combobox in EditorGridPanel after selecting item?

I am using an Ext.form.Combobox on a column model editor, and this ColumnModel is put in to an EditorGridPanel. After I select an item in combobox, the text displayed on combobox is always the valueField, not displayField. How can I keep the…
Đinh Hồng Châu
  • 5,300
  • 15
  • 53
  • 90
2
votes
1 answer

How to add an item to an ExtJS GridPanel without firing selectionchanged event

I've got an ExtJS interface that addresses a problem I'm sure tons of people have had before. I have a service that exposes a list of items, and I need to show that list in a GridPanel. I have this part working. When I click one of the items, I…
Coderer
  • 25,844
  • 28
  • 99
  • 154
2
votes
1 answer

extjs gridpanel drag and drop feature

Ext.namespace('Moca'); ..... Moca.LaGrid = new Ext.grid.GridPanel({ store : Moca.Stores.LaStore, ddGroup: 'GridDD', enableDragDrop: true, ..... var ddrow = new Ext.dd.DropTarget(Moca.LaGrid.getView().mainBody, { ddGroup : 'GridDD', …
urcm
  • 2,274
  • 1
  • 19
  • 45
2
votes
1 answer

Issues with GridPanel in Delphi XE

The GridPanel has issues! Am I doing something wrong? First row at column 2 is a bug on resizing the form. Tested with Delphi XE 6 and 10.2.2! Place a TGridPanel to the Form and set "Align" to "alClient". Start and resize form. Try the following…
Snitch
  • 51
  • 1
2
votes
1 answer

Using an ExtJS grid with vertical header columns

So right now I have an ExtJS GridPanel that is laid out in the following manner: |Header 1|Header 2|Header 3|Header4| |Data 1 |Data 2 |Data 3 |Data 4 | |Data 1 |Data 2 |Data 3 |Data 4 | What I should like to do is have it displayed in the…
Kris
  • 1,789
  • 3
  • 18
  • 27