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
2 answers

How to create Component Property similar RowSpan, ColSpan Delphi with GridPanel

I am creating a component inheriting from the gridpanel. When I add a label, edit, or other component on the gridpanel, the edit, label... component appears in the Row, Col, RowSpan, and ColSpan properties. How do I create a new property equal to…
Eber
  • 169
  • 8
2
votes
0 answers

Scala/Swing - How to place two grid panels on top of each other in one frame

I would like to place one gridpanel containing a moving background and on top if it I would like to display an other grid panel as the main content. How do I do this? package o1.game import scala.swing._ import scala.swing.event._ import…
Leero11
  • 365
  • 2
  • 4
  • 17
2
votes
2 answers

Combobox in grid cell with remote store

what is correct method to get 'displayField' (group name) of combobox and display it in grid cell? I created a grid with 'cellediting' plugin, added combobox to one of this columns. Than created listener 'onCellEditingEdit' to submit the…
Antonix
  • 215
  • 2
  • 10
2
votes
1 answer

extjs 5 grid's scrollbar does not work in border layout panel

in border layout panel , the grid's scroll-bar doesn't work correctly even though the store of grid is long enough to make the grid overflow! if my grid is in none border layout panel , the scroll-bar is OK, but when i put the grid in the border…
happyyangyuan
  • 179
  • 3
  • 14
2
votes
1 answer

EXTJS 5: Why does Ext.grid.Panel have no stripRows effect, after I change the Theme from Neptune to crisp

I use sencha -sdk ./ext-5.0.1 generate MyApp ./MyApp to get a new Application. And run sencha app watch, Develop Tool Netbeans 8.02, Google Chrome with Netbeans connector. Then I create a Gridpanel with 4 data lines, and add it in…
Excessstone
  • 61
  • 1
  • 6
2
votes
1 answer

ExtJS remote filtering - determine filter data type on the server side

I'm implementing remote filtering on gridpanels in my ExtJS MVC application. Client sends serialized filter to the server side correctly but unfortunately on server side i'm not able to determine which type of data is the filter. I'm currently…
LNyarla
  • 454
  • 1
  • 8
  • 23
2
votes
1 answer

Why is my ExtJS 4.2 gridpanel sort not working?

Not sure why my sort is not working for this gridpanel. I set the sorters property, I believe correctly. And I set the sortOnLoad property as well. Not sure why this simple case is not working. I don't think I need to do a remote sort in this case,…
Greg Lafrance
  • 809
  • 15
  • 35
2
votes
1 answer

Ext.net rowexpander resize header not resize content

I am using .net 4 with ext.net 2.2 I face the above problem: I have the above gridpanel
kostas ch.
  • 1,960
  • 1
  • 17
  • 30
2
votes
1 answer

ExtJS - How to get addCls() and removeCls() to show changes

I am trying to dynamically set the padding on a grid panel I have showing some data. On the event that my checkbox was clicked, it should apply the padding cls. Here is the relevant ExtJS code: var permissionsGrid = Ext.create('Ext.grid.Panel', { …
Alpenglow
  • 173
  • 1
  • 17
2
votes
1 answer

Clear the Search Text field in LiveSearchGridPanel

We are using the LiveSearchGrid Panel in ExtJS 4.2.1 similar to the example below, with Pagination. When the user searches for a record in one page, and then goes to another page, the search text field is NOT cleared, and clicking on the next or…
Ravi
  • 843
  • 2
  • 15
  • 31
2
votes
2 answers
2
votes
4 answers

Change the color of summary row of grid in extjs

I want to change the font as well as background color of the summary row of the grid.I have tried getting the summary row as : var summaryRow = grid.view.el.down('tr.x-grid-row-summary'); Based on summaryRow I can set the style.But I am getting…
Dev
  • 3,922
  • 3
  • 24
  • 44
2
votes
1 answer

EXTJS Change default behaviour of the GridPanel row selection

I have a gridPanel based on EXT4. When I select a particular row, the row highlighting works based on the "id" given to the particular row. How do I change the default implementation to something to use like "rowId" instead of "id" Where is this…
ManJan
  • 3,939
  • 3
  • 20
  • 22
2
votes
2 answers

How to get only deleted records from an Ext js Grid store?

I have a grid store and I am able to get modified data using var modifiedData = store.getModifiedData(); Now I want to get deleted records (I am using ExtJs 3). I tried using var deletedData = store.getRemovedRecords(); but I guess this property…
Microsoft DN
  • 9,706
  • 10
  • 51
  • 71
2
votes
1 answer

Ext.net dynamic gridPanel reading from an httpHandler

I am adding a dynamic grid to a view port on click of a button the data in the store is from an ajax proxy , I am using the same code as in http://examples.ext.net/#/GridPanel/Saving_Variations/HttpHandler/ but the difference is I am adding it in…
abeer
  • 31
  • 2