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

326 questions
6
votes
2 answers

How to wait until all stores are Sync in ExtJs?

I have a list of grids that can change their data in form by end-user. Finally, I want to sync all the grids by clicking the button, then an operation is performed. I wrote the code below: $.when.apply( Ext.ComponentQuery.query('grid') …
Hossein
  • 2,650
  • 3
  • 12
  • 29
6
votes
0 answers

ExtJS infinite loop on grid focus

We're using ExtJS 4.2 and ran into weird problem. There's a grouped grid panel from which we drag elements to a tree panel. In most cases everything is working fine, but sometimes for unknown reason wrong item is dragged or it doesn't happen at all.…
ExC
  • 69
  • 1
6
votes
1 answer

Can I force JavaFX's GridPane to distribute space evenly?

I'm facing a bit of weird layout behaviour when using GirdPanes in JavaFX 2. While it usually seems to spread horizontal space evenly between multiple fields, it doesn't do so in some other cases. Here is an example showing the effect: import…
Peter Becker
  • 8,405
  • 7
  • 38
  • 59
5
votes
2 answers

change color of rows in grid in ExtJs

How to get the Backgroud or text colour of first five rows to be different from the next five rows. For example, First 5 Yellow,5 Orange,5 Yellow,5 Orange,and so on.. I added following listener for the grid listeners: { viewready: function(g)…
sainath
  • 203
  • 2
  • 6
  • 19
5
votes
2 answers

How to disable LoadMask on GridPanel

I've a GridPanel which is updated every 10 seconds. var refreshEnvironmentsStoreTask = { run: function() { this.getEnvironmentsStore().load() }, scope: this, interval: 10000 //10…
txt_flow
  • 51
  • 1
  • 2
5
votes
2 answers

ExtJS Grid Panel - Multiple "rows" per row?

We have an ExtJS Grid Panel that has grown to include too many columns (imo), so I am looking into enfolding some data into "sub-rows" of the main row. Like: Data1 | Data2 | Data3 | Data4 | Data5   Some additional data that spans Data1 | Data2 |…
Chewpers
  • 2,282
  • 4
  • 21
  • 29
5
votes
1 answer

Gridpanel lost filter while paging

I have a jsonStore bound to gridpanel with paging toolbar and some custom filter. But everytime when I use paging all filtersettings get lost. How can I keep them?
MNR
  • 1,023
  • 5
  • 22
  • 37
5
votes
3 answers

Extjs multiple inheritance?

I have a question regarding multiple inheritance in ExtJS. While I know I can simply duplicate the code to make it happens, but I want to know if there is any way to code it more efficiently. I have a customized GridPanel component in my framework,…
Lionel Chan
  • 7,468
  • 5
  • 34
  • 65
5
votes
2 answers

How to get the value of the checked radiobutton in wpf

I have four RadioButtons in a grid panel, but when I do this:
DorZ11
  • 75
  • 1
  • 1
  • 6
5
votes
3 answers

ExtJs 4 GridPanel with CellEditing: data entered is lost on failed validation

I am using a ExtJs Grid with the CellEditing plugin. It works perfectly except that invalid values are lost when it fails the validation I imposed on it. For example, if I have a editable textfield in the grid that doesn't allow values over 10…
applepie
  • 434
  • 1
  • 8
  • 16
4
votes
2 answers

ExtJS: Ext.grid.Panel: how to keep sort order after store.sync()?

I have a nice working Ext.grid.Panel, with column headers you can click on to "automatic" sort. The store has "autoSync: true". I have a button "new", when the user clicks on it, it creates an empty record without the id property: onAddClick:…
Olivier Pons
  • 13,972
  • 24
  • 98
  • 190
4
votes
1 answer

ExtJs4, how to edit manually cell datetime with text format (without timefield or datefield) in gridpanel?

With GridPanel in ExtJs4, how to edit cell datetime (without timefield or datefield) ? I use this for a correct display : { header: 'date_event', field: { type: 'datecolumn', // format: 'Y-m-d H:i' // do nothing on rendering…
immobiluser
  • 348
  • 1
  • 2
  • 12
4
votes
1 answer

How to add color picker in a row of Ext.grid.GridPanel

I'd like to use a color picker when I edit some cells in a row of an Ext.grid.GridPanel. I didn't find any examples from the official Examples or the APIs, could someone give me some example codes for this case, any suggestions will be appreciated!
NicolasZ
  • 119
  • 1
  • 9
4
votes
1 answer

ExtJS DateFormat Issue

I haven't found an existing question on this exact problem (there were several that were similar but did not help). I have a GridPanel with exam results, including when the exam was complete. The date returned from the SQL server is formatted like…
cmhampton
  • 193
  • 5
  • 12
4
votes
3 answers

Removing headertoolbar of GridPanel in Extjs

I have a GridPanel in Extjs and i just want to remove or hide its header toolbar. (The toolbar where the title and the searchbox is in). I just want the Gridpanels first element to be the column headers. How can I do it?
Chris
  • 7,303
  • 8
  • 48
  • 93
1
2
3
21 22