Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
68 views

https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio On desktop devices, the devicePixel ratio gives us the level of zoom that the user specified using ctrl +/- and or by selecting ...
itsalongstory's user avatar
1 vote
0 answers
50 views

I am using ExtJs 7.6 Classic and I am encountering an issue where screen readers like NVDA and Jaws are not properly announcing the row numbers of buffer grids. The buffer grid in kitchen sink seems ...
Javier's user avatar
  • 11
0 votes
1 answer
212 views

I have an ext.js 7.2 grid panel. Right now, I have the default functionality where when the header column is clicked the first time, up arrow appears and the grid is sorted ASC when the header column ...
Dilani's user avatar
  • 553
1 vote
1 answer
121 views

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 ...
Subash .V's user avatar
2 votes
1 answer
353 views

This is my first time using a javascript framework, I would like to implement MVVM in my EXT JS application and the data is coming from my WEB API (ASP.NET FRAMEWORK). My problem is that, I don't seem ...
Secundus Praxi's user avatar
0 votes
2 answers
650 views

I would like to add a Select/Deselect All Columns checkbox under Columns before the column names in a grid panel to show/hide all columns. As there are large number of columns in grid so user wants to ...
Anirud Thapliyal's user avatar
0 votes
1 answer
804 views

I am using ExtJs 7.4(Modern toolkits) to create a grid with filterbar(with filter value) and groupfield(with group value), the filtered value not show on the filter bar. This is working perfectly in (...
Jeremy Siow's user avatar
0 votes
1 answer
384 views

I am trying an example for Ext.grid.Grid from extJS docs. I am unable to figure out why the tpl is also showing div element also as text. Ext.create('Ext.data.Store', { storeId:'employeeStore', ...
Siju's user avatar
  • 2,665
0 votes
1 answer
226 views

Ext.js has the Ext.sparkline.Bar class. Is it possible to make that bar chart stacked? I have implemented a cartesian as the widget for the widget column to achieve this effect, But it has led to very ...
user2360507's user avatar
1 vote
0 answers
186 views

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 ...
marvinh's user avatar
  • 46
0 votes
1 answer
234 views

How to fix it? I found a bug on layout card animation using grid component; What happens? When you configure the layout for the "card" type and animation for "slide", "cover&...
Mateus Medeiros's user avatar
0 votes
1 answer
67 views

I recently purchased the ExtJS 7.x license and am doing some tests, I ended up finding a flaw (incompatibility) with the Edge and Chrome browsers. When creating a simple grid type component, selecting ...
Mateus Medeiros's user avatar
0 votes
0 answers
279 views

I am trying add form panel in dataView, i have ItemTPL where i have written divs and in that div I want to call Extjs Form Panel, But when i can call extjs form panel i get below error "[W] ...
VijayShukla's user avatar
0 votes
1 answer
995 views

I have a grid in extjs 7.2 with a store that is filtered by date. I have a start date and an end date, which are bound to date objects in my ViewModel. When the grid is initialized, the date for the ...
Jude Quintero's user avatar
0 votes
1 answer
515 views

I want to implement a plugin in extjs grid but its not rendering. Tried with below code but not working for me, no error on console. Ext.define('xyz', { extend: 'Ext.grid.Panel', xtype: 'mytype', ...
Sunil Bamal's user avatar
0 votes
1 answer
301 views

I have 3 edited cell in row and 3 reset button in witch 2 reset button is for 2 individual cell and 1 is for whole row reset. For reset whole row i used grid.store.getAt(rowIndex).reject(). I don't ...
KaranPithadiya's user avatar
0 votes
1 answer
115 views

want to show popup (like.. Do you want to save changes?) while row change of grid and pop Up have buttons like YES and NO, if previous row is modified and user click on "YES" in popup at that time ...
KaranPithadiya's user avatar
0 votes
0 answers
397 views

I am using ExtJS 3, I am entering special characters like "&,<,>" in the Textfield of a grid cell, and when I release that cell then that special character converts into an empty string. It ...
KaranPithadiya's user avatar
1 vote
0 answers
117 views

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. ...
Nico C's user avatar
  • 11
0 votes
1 answer
2k views

Fiddle with the problem is here https://fiddle.sencha.com/#view/editor&fiddle/2o8q There are a lot of methods in the net about how to locally filter grid panel that have paging, but no one is ...
divinen's user avatar
  • 81
1 vote
1 answer
108 views

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" }, ...
Foramkumar Parekh's user avatar
1 vote
0 answers
69 views

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: ...
Farzan Najipour's user avatar
-3 votes
2 answers
2k views

Currently I am working with Ext JS 6.5.2.. And I am facing issue in sorting the grid columns menu Items. I want to sort column list but remember I do not want to sort column header. This image may ...
ravi's user avatar
  • 3
0 votes
1 answer
2k views

How to define custom tooltip for a column in extjs grid? there is a listener for grid which apply QuickTips for whole grid but I want a column has a custom tooltip and ignore global tooltip. here the ...
hd.'s user avatar
  • 18.4k
0 votes
0 answers
372 views

I am new to ExtJS. I have a grid with add and delete button to add/delete rows. When rows exceeds the height of grid, I want to display a vertical scrollbar to this grid. I have checked with ...
Prakash's user avatar
  • 19
2 votes
1 answer
953 views

I have the following part of code that displays row of checkboxes in grid in this way grid columns of grid: columns: [{ text: 'Name', dataIndex: 'name' },{ ...
divinen's user avatar
  • 81
3 votes
2 answers
1k views

I am new to ExtJS and I am trying to display the group of checkboxes in this way: I have the following code: Ext.onReady(function() { var ct = Ext.create('Ext.container.Viewport', { layout: '...
divinen's user avatar
  • 81
1 vote
1 answer
222 views

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 ...
Abdul's user avatar
  • 1,206
0 votes
0 answers
96 views

I am working on ExtJS 5.0.1 Grid,where when I apply grouping on it and later filtering on the same column I am getting the following error which says "Maximum call stack size exceeded". I haven't ...
Adithya's user avatar
  • 13
0 votes
1 answer
503 views

I am trying to set(check) List filters of a grid column dynamically from response. I am able to set them but when I open the menu of the corresponding filter and setting some other combination of data ...
Adithya's user avatar
  • 13
0 votes
1 answer
469 views

When I am trying to add a check column to the grid using below codes this.entitlementColModel = new Ext.grid.ColumnModel([new Ext.grid.RowNumberer(), { header : 'CIF', dataIndex : '...
Sajeer Babu's user avatar
  • 1,333
0 votes
1 answer
876 views

I have a requirement where I have to apply dynamic date filters on an ExtJS grid on load(i fetch dates from response).I tried but it is not showing the filtered date nor it is marking the "before/...
Adithya's user avatar
  • 13
0 votes
1 answer
227 views

I am working on applying filters dynamically on ExtJs(5.1.3) Grid columns(i get filter criteria values which need to be searched in Grid Store).It worked for me in "string" type filters.But for none ...
Adithya's user avatar
  • 13
0 votes
0 answers
169 views

I would like to group records and then filter them. When the code below is executed the records are grouped and during the loading of the grid, I can see the records being filtered by the condition, ...
TS.PH's user avatar
  • 67
0 votes
0 answers
337 views

I'm using Ext Js v6.2 Grid, In my application, I have three columns Charges, Rate & Amount Here I want to get all the value of third column [AMOUNT] & Sum it up. I used Ext Js Function "var ...
S Dhanissh's user avatar
0 votes
1 answer
2k views

I'm using Ext Js v6.2 Grid, In my application, I have three columns Charges, Rate & Amount Here I want to get all the value of third column [AMOUNT] & Sum it up.please correct my code if I'm ...
S Dhanissh's user avatar
1 vote
1 answer
938 views

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 ...
S Dhanissh's user avatar
0 votes
0 answers
512 views

Am using Extjs6.2 . I have used extjs tree panel. Following is my code for the same: { xtype: 'panel', scrollable: true, layout: 'fit', collapsed: false, title: 'My Panel', ...
user223614's user avatar
0 votes
1 answer
1k views

I am facing a issue when using extjs grid rowexpander. Steps to reproduce it: 1. Expand first row. 2. Now scroll to the last record of grid. 3. Now expand last row. You will see scrollbar ...
Ajay Thakur's user avatar
  • 1,072
0 votes
1 answer
793 views

Can anyone help why mouse wheel scrolling very slow in both Firefox and Chrome. In Internet Explorer its working fine Sample Test Case
PraveenKumar S's user avatar
2 votes
3 answers
571 views

I am having a security issue with extjs 6 paging toolbar for grid. i am able to inject xss script in numberfield of paging toolbar. Following is the fiddle with a paging grid. grid Fiddle link try ...
Jai Kishan's user avatar
4 votes
1 answer
2k views

On Combo select from options, it removes selection of all records from grid and even it removes selection of current record also when you finish your editing. Select all row from table. click on last ...
swapnil solanke's user avatar
8 votes
2 answers
2k views

Notes ExtJS version: 6.2.1.167 Fiddle: fiddle.sencha.com/#view/editor&fiddle/1tlt This functionality worked in ExtJS 2.x and did not have any issues. Goal To have a grid (with a grouping ...
mibawork's user avatar
1 vote
2 answers
1k views

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, ...
André Cristino's user avatar
3 votes
1 answer
1k views

The enableTextSelection attribute doesn't work when grid is inside a window. The following code has no effect on the grid. viewConfig: { enableTextSelection: true } See this fiddle for a ...
Lorenz Meyer's user avatar
  • 20.1k
1 vote
0 answers
745 views

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: [ { ...
Waqar Haider's user avatar
1 vote
1 answer
360 views

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 ...
CodZilla's user avatar
  • 151
0 votes
1 answer
912 views

I'm upgrading from ExtJs 4.2 to ExtJs 6.2, and something has changed in between in how drag and drop works. In ExtJs 4.2, I had a simple use of it in a grid: Ext.define('App.view.images.List', { ...
Lorenz Meyer's user avatar
  • 20.1k
1 vote
2 answers
832 views

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 ...
Lorenz Meyer's user avatar
  • 20.1k
1 vote
0 answers
268 views

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 ...
U Abhishek's user avatar