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
2
votes
1 answer

How to sync my Store when I update the bounded record using form (onUpdateClick). I'm using Extjs 7.5 (Sencha CMD)

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 to understand how to fully use viewModel which…
2
votes
1 answer

Save checkboxes values when page reload Ext JS

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' },{ text: 'Permissions', …
divinen
  • 81
  • 10
2
votes
3 answers

xss injection in numberfield of paging toolbar in extjs

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 pasting this code in the paging toolbar input field…
Jai Kishan
  • 33
  • 6
2
votes
1 answer

Extjs show grid table

Hi I start to get to know extjs. I stumbled on the first problem I can not solve. I use admin template. I created a new page by adding NavigationTree another item: ProjectName / src / store /…
rad11
  • 1,561
  • 3
  • 15
  • 30
2
votes
1 answer

EXTJS Grid grouping by Object error

I am trying to implement a grid with grouping feature. This is my Model: Model Ext.define('myApp.model.ModelPrueba2', { extend: 'Ext.data.Model', fields: ['id', { name: 'name', type: 'string' },'sign'] }); I fill my store from an AJAX proxy…
dgcipp
  • 339
  • 3
  • 17
2
votes
2 answers

How to display nested objects in a GridPanel in ExtJS (and Sencha architect)?

I've got an incoming array of Offering objects that looks like this: [{ "id" : 16, "price" : 500, "quantity" : 2000, "denomination" : "case", "denominationPlural" : "cases", "product" : { "id" : 14, "description" : "This is the…
fivedogit
  • 8,374
  • 7
  • 34
  • 43
2
votes
2 answers

Ext JS, change grid column configs default values globally

Ext.grid.column.Column class has following configs: draggable (Defaults to: true) sortable (Defaults to: true) menuDisabled (Defaults to: false) Is it possible to change default values of this configs globally for all grid columns in my…
Yoh0xFF
  • 1,450
  • 2
  • 18
  • 31
2
votes
1 answer

Ext JS: Add button to a column in a grid to show/hide other columns

I'm trying to create the effect of "expanding/collapsing" columns in an Ext JS grid. To do this, I'd like to add an icon/button next to the name of a column, such that when somebody clicks on it, it's child columns are either hidden or shown. I've…
dogbane
  • 266,786
  • 75
  • 396
  • 414
2
votes
1 answer

Group Summary Disappears When Grid is Refreshed/Re-Drawn

Back again with another ExtJS query. I have a grid with a SummaryGroup feature that is toggle-able (enabled/disabled) from a tool button on the panel header. Enabling once displays it properly, disable then try enable the feature. The grouping…
Kal
  • 2,239
  • 6
  • 36
  • 74
2
votes
1 answer

Ext Js Paging not able to navigate to next Page, refresh, Last page not working

Sorry I think this may be a duplicate. But I am not getting correct answer from anywhere. Please help me to find the issue. I am creating a Ext Js grid with store. Also with the help of this blog …
Akshay Joy
  • 1,765
  • 1
  • 14
  • 23
2
votes
1 answer

ExtJS 4.2.1 Grid view overriden with custom XTemplate shows nothing

I am working on a switch from version 4.1.1 to 4.2.1 and finally I need to fix hopefully the last bug. We have a gridview with view being overriden by simple (?) Ext.XTemplate, as follows: Ext.define('view.monitoring.Event', { extend:…
shadyyx
  • 15,825
  • 6
  • 60
  • 95
2
votes
1 answer

EXT Grid with multiple checkboxes - Selecting item deselects another

I have a EXT JS 4.2 grid 5 columns, it has the normal selection checkbox at the far left along with an additional checkbox in the second to last column and a radio in the last column. If I click and select a row in the selection column then go to…
xXPhenom22Xx
  • 1,265
  • 5
  • 29
  • 63
2
votes
1 answer

display row tooltip on condtion base on row mouse hover

I am using this code in grid render event for display tpl on row mouse hover grid.tip = new Ext.ToolTip({ view: grid.getView(), target: grid.getView().mainBody, delegate: '.x-grid3-row', trackMouse: true, renderTo:…
jayesh
  • 2,422
  • 7
  • 44
  • 78
2
votes
1 answer

ExtJs grid similar columns created more simply

I have a grid, which has lots of columns which are almost identical, they have the same names, but with a different number on the end. They use the same renderer functions, but with a different parameter value, and so on... These column definitions…
Zuller
  • 177
  • 2
  • 11
2
votes
3 answers

ExtJS GridPanel data tooltip

I want to add tooltip to my gridpanel's data. I want to put map on tooltip panel, I got it, but my static map's width is 600px, it overflows from tooltip's panel. I used below code, it works fine, but can not set a width to tooltip. How can I…
vtokmak
  • 1,496
  • 6
  • 35
  • 66
1
2
3
9 10