Questions tagged [extjs-grid]

this tag should be used on questions which use Ext.grid.Panel/Ext.grid.Grid classes in the code or the question is somehow related to components being used in a tabular grid.

This tag should be used on questions which use Ext.grid.Panel or Ext.grid.Grid classes in the code or the question is somehow related to components being used in/with a tabular grid of .

For more information regarding grids you can check: http://docs.sencha.com/extjs/6.5.0/guides/quick_start/presenting_data.html

144 questions
0
votes
2 answers

ExtJs Grid populating a column through ajax in renderer

I have a ExtJs grid with three columns (with the third column being status). The first two columns are loaded to store and populated in grid. And the third column depends on the first two columns. I cannot create a new store for the third column. Is…
Kannan D
  • 467
  • 1
  • 4
  • 15
0
votes
2 answers

Change the backcolor for ExtJs 4.2 grid column based on some condition

I am using ExtJs 4.2 editable grid. When user edit a cell, I need to change the backcolor of the entire column. I am using onCellEdit event which gives me the column index. But I am not able to find any property or method which will allow me to…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

ExtJs 4.1 grid remote sort client side event

I am using ExtJs 4.1 grid. I have enabled the remoteSort in the store & enabled sortable property for the columns. Everytime I sort\click on column header, a call is made to the server with sort params being passed in the query string. I want to…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
3 answers

How to call action only on Action column image not on grid cell

In grid 'actioncolumn' i displayed an image using 'renderer' like, image + text On action column click i am calling some action, but click event is triggering even click on empty space in grid cell. how to prevent that click on empty space. how to…
VENKI.B
  • 53
  • 1
  • 9
0
votes
1 answer

Get the focussed row (not the selected)

I have a grid, with a selection model that does allow the selection of a row only under certain conditions. When I click on a row, it gets focussed (it becomes darker gray). I want to add a button, that acts on the currently focussed row. Since the…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
0
votes
1 answer

How to build an Advanced filter panel for a Grid component in ExtJS 5

I am required to build an advanced search / filter panel for a given grid component(on ExtJS 5). ============================================ Search fields: field1: textfield field2: numberfield field3: date field4: lov Table Grid: name …
optimusPrime
  • 249
  • 6
  • 17
0
votes
0 answers

Extjs5 grid: stopping events from execute before onSelect event finish

I have a gridView that have both onSelect and onItemMouseDown events. when I click a cell, and print its position it gives the past ones. If I put the position printing code inside a setTimeOut timer for lets say 100ms, the position is true. Is…
Muayad Salah
  • 701
  • 1
  • 8
  • 19
0
votes
1 answer

After Sencha Cmd deploy - Cannot read property 'isBufferedStore' of undefined

I have a grid with a normal store. Everything works fine, but as soon as i deploy my project with sencha cmd i get the error: Cannot read property 'isBufferedStore' of undefined . I know that this error occurs when the store could not be…
Timon
  • 149
  • 1
  • 3
  • 16
0
votes
1 answer

Styling two separate grid cells with different styles after rendering the table in extjs

I'm having troubles giving some cells some styling in ExtJS 5. I have two style rules in the index page: .yellow-cell .x-grid-cell{ font-weight: bold; background-color: yellow; } .red-cell .x-grid-cell{ color:blue; background-color:…
Muayad Salah
  • 701
  • 1
  • 8
  • 19
0
votes
1 answer

Extjs grid filter in number column

I have a grid with filters working fine. My issue is, if I give 1.00 in the search field. It shows the result with data 1.00, 10.00, 100.00, etc. I want only to show the result with data 1.00 only. The following is my code: me.grid.store.filter(key,…
0
votes
1 answer

Extjs Grid, how do make last row unsortable?

Taking a look at the example at: http://dev.sencha.com/deploy/ext-4.0.0/examples/grid/locking-grid.html The last row at the bottom is "wal-mart". How would I make that bottom row unsortable? The way it is now, if I sort any column, Wal-mart may…
Aaron Brown
  • 281
  • 1
  • 5
  • 13
0
votes
1 answer

How to call a js function on click of a grid cell?

I want a javascript function to be called as I click on a cell in grid .I want code for the same using extjs 3.4. How can I achieve it? can anyone help me out in it?
Ankitha Nayak
  • 11
  • 2
  • 5
0
votes
1 answer

Move form button to left on Ext.form.panel

I have basic Ext.form.panel component in my application. I used the buttons:[{list of buttons}] property to add reset and submit buttons for the form. Everything looks well and works well except the buttons are always positioned towards the right…
Vlad
  • 2,739
  • 7
  • 49
  • 100
0
votes
2 answers

Display only limited no of records in grid using Ext js

I am having trouble making a grid using Ext js .so for i did store and grid.it is working fine.but my problem is,i have 14000 record,it is displayed in a grid ,single shot.but i want to display only 100 records and next 100 records like a page…
Dheepan
  • 35
  • 8
0
votes
1 answer

Make all cell text visible in ExtJS grid component

I developed application in ExtJS that has a grid component. It works well, loads data and shows them properly. I have column Description which often has lot of text to be shown. In the grid component the text is shown in one line and once the next…
Vlad
  • 2,739
  • 7
  • 49
  • 100