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

How to retain sorting order of columns in sencha grid

I have a grid with few columns which are sortable. Currently if user clicks on any column, it gets sorted, and at the same time grid clears existing sort. I want grid to retain the sort of existing column as well. Here is the fiddle:…
Subash .V
  • 23
  • 3
1
vote
0 answers

ExtJS 7.x Modern, How to Drag and Drop from Grid to Grid Tree?

I'm looking for an example of how to implement a row drag and drop from a grid to a grid tree. This would be using the Modern toolkit. It works when I drag and drop from one grid to another but when I drag over a tree grid no drop target becomes…
marvinh
  • 46
  • 3
1
vote
0 answers

Error on Ext.layout.ContextItem.initAnimation after dynamic header column adding

I have developped a method to change dynamically grid header menus. I remove columns and use configuration to add others. But an error occurs if order is changed for a column when my method is called. Here is the code of columnSwitch method : (The…
Nico C
  • 11
  • 1
1
vote
1 answer

ExtJS Grid - Display Multiples rows in one row

I am having below json data in ExtJS store. I am using Ext.grid.Panel to show this content with colum Name and Phone. { "name": "Doris Ryan", "phone": "1-536-934-9500" }, { "name": "Nissim Hines", …
Foramkumar Parekh
  • 421
  • 1
  • 6
  • 26
1
vote
0 answers

ExtJS - Display new tab when user click on row

I have grid data in ExtJS. I've decided to insert a new tab whenever the user clicks on a specific row. The new tab contains information which has been transmitted from a row. Here is my code: columns: [ { text: 'Name', …
Farzan Najipour
  • 2,442
  • 7
  • 42
  • 81
1
vote
1 answer

GridPanel Columns names changing automatically

I am trying to add a GridPanle into a window. For this i have created a model, store and then created a panel and then adding this panel into window. Facing issue with Panel column Headers. The below is the code i am using. function(orderModel,…
Abdul
  • 1,130
  • 4
  • 29
  • 65
1
vote
1 answer

Ext Js Grid, How to get the value of cell on keyup?

I'm using Ext Js v6.2 Grid, In my application, I need to get the value of the cell on keyup Here my code, I've tried but it doesn't return the value,please correct my code if I'm wrong, I've searched in documentation and other stuff it doesn't…
S Dhanissh
  • 103
  • 1
  • 1
  • 15
1
vote
2 answers

Can not read property 'mergeAttributes' of null error when I try to insert new records using extjs grid editor

First of all, I am using 6.2 version of extjs framework. I'm facing a problem to save new records using the ext.js grid with the "Ext.grid.plugin.RowEditing" plugin. When I try to save a record, since the line does not have a combobox in the editor,…
André Cristino
  • 95
  • 1
  • 14
1
vote
0 answers

Extjs 6 remote Store grouping not correctly

Extjs grid when 'remoteSort: true' than grouping is wrong. and when I set 'remoteSort: false' it works fine what seems to be the problem here is a little code that is grid feature features: [ { ftype: 'grouping', groupHeaderTpl:…
Waqar Haider
  • 929
  • 10
  • 33
1
vote
1 answer

extjs grid reserveScrollbar with layout 'absolute'

version : extjs-5.0 ExtJs grid has a property reserveScrollbar which reserves space for scroll bar. I've a window with layout : 'absolute' which is the container for grid. Now the problem is, the grid doesn't reserve space for scroll bar. Many…
CodZilla
  • 151
  • 1
  • 1
  • 9
1
vote
2 answers

Why are columns no longer resizable in ExtJs 6

In ExtJs 4 all columns in a Ext.grid.Panel were automatically resizable. After upgrading to ExtJs 6.2, it is no longer possible to resize te column. The cursor will still change to resize, but resizing no longer works. I looked into the…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
1
vote
0 answers

Ext Js Grid show First page records on second page also

Ext js grid Initially showing first page records, its's great; but when next page button is clicked, request is going to the Server and server also returning second page data but grid is not showing second page content, its showing first page…
U Abhishek
  • 11
  • 1
1
vote
2 answers

In ExtJs 6.2, a column that contains an item does not take into account its flex property, is there a workaround?

In ExtJs 6.2, there is a bug described here in the Sencha Forum. Since 6.2+ Ext.grid.Panel ignores flex when using column items. Steps to reproduce the problem: Create a grid in fiddle with 6.2+ Add columns without items and flex:1 klick run in…
Lorenz Meyer
  • 19,166
  • 22
  • 75
  • 121
1
vote
1 answer

Ext js 6: Grid doesn't show all fields for new inserted item

I have following model and store. Model: Ext.define('TruckTask.model.Company', { extend: 'Ext.data.Model', idProperty: 'id', fields: [ {name: 'id', type: 'int', defaultValue: null}, {name: 'name', type: 'string'}, {name: 'site', …
Artsiom Kotau
  • 221
  • 1
  • 4
  • 11
1
vote
0 answers

Default selection of combo in grid cell in ExtJS 6

I have grid panel where some column cells require to show combo box.  I have different services to load grid and combo data. I have different fields in record to show value in grid cell rows. I want to display default value in combo from grid row…
Rishabh Shah
  • 541
  • 7
  • 28
1 2
3
9 10