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

How Can I add Dynamic Textboxes in extjs grid

I am having a button on page on the click of the button i need to add rows inside extjs grid. The row will contain the controls like textbox, combobox, datefields etc. I have added dynamic rows to the store like this - var r = Ext.create('Model',…
0
votes
0 answers

Changing row grid color based on returned function value

Can you help me in changing the grid row style (bold/thin) depending on value returned from java function. it is only this callback function which i use, it simply check if there is record inside one table and return true/false. I tried the…
azzmi
  • 21
  • 2
0
votes
2 answers

ExtJS - grouping grid results

I have a grid containing store. I'm not able to group the rows in that grid for some reason. my grid looks something like this (can't upload a picture since i don't have enough reputation): +-------------+---------------+--------------+---------+ |…
yanivsh
  • 293
  • 1
  • 5
  • 16
0
votes
0 answers

Record set not working

I use a grouping feature on my grid. When I click on a group I simply iterate through my store and change some properties using set. But the attribute doesn't get set no matter what.. Here is my code: onGroupClick(node, view, group){ var store…
Jacob
  • 3,580
  • 22
  • 82
  • 146
0
votes
1 answer

Finding a node by id or name in ExtJs 4.1 tree panel

I am using ExtJs 4.1 tree panel. The model is having 4 fields. I need to search a node by 'Name' field and then I want to update one of the property of the returned node. What is the best way to achieve this? I can always get the root node and then…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

Unable to load data in ExtJS tree grid - Only root node is visible

I created a sample of ExtJS tree grid. But the grid is showing only the root node. Please check this fiddle and let me know why the remaining nodes are not visible.
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
0 answers

ExtJS - Writing code in Ext.onReady vs ExtJS view

Please check this fiddle and see how I have written code inside Ext.onReady function. While this code is working fine, If I need to write the same code inside a ExtJs view, How can I modify the existing code to include the grid and the group feature…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

ExtJs 4.1 grid's grouping feature enabling and disabling issue

I am using ExtJs 4.1. My application is having two grid. Both the grid have grouping feature (I am using two unique Grouping feature). Both the grids are using single store. Each grid is having two button used to enable and disable the grouping…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

Which event get fired first when an ExtJS grid inside a view is loaded

I have a view, which contains a grid. The grid is having a grouping feature. I am enabling/disabling the feature based on user interaction. If I disable the feature & close the window, the next time I load the view, the grouping feature remains…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

What is the right place to declare a feature in ExtJS view

I am using ExtJS 4.1. I am using MVC feature. I have defined all my controls in View and reply on Controller for event handling. I want to add some feature to the grid. I am not sure at what place I can define the feature. Is it possible to define…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

ExtJs 4.1 grid grouping feature - preventing 'group' keyword from appearing in the heading

I am using ExtJs 4.1 grid and have added group feature. In the store I have specified the groupField and grouping feature is working fine. But when the grid renders, the group header is shown as Group: Group-Name". How Can I prevent 'Group' keyword…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

ExtJs 4.1 grid rendering issue

I have copy pasted ExtJS Group grid into my application. I have pasted this code But after running the solution, grid is rendering like below image. Am I missing any reference? Here is the Fiddle Ext.require(['Ext.data.*',…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
1 answer

How to update tool tip content when grid store is update?

I have this.mygrid there is column as my_col_id i want to add tool tip in to the grid cell. I added tool tip for grid cell but that tool tip not update with my store(my_store) changes. how to update my grid tool tip when store update Note: don't…
Duleep
  • 569
  • 5
  • 25
  • 49
0
votes
1 answer

Using One grid as grouped grid and as normal grid in ExtJs 4.1

In my application, I am using two ExtJs grid. One contains department ID's and when any row is selected in the first grid, the second grid is populated with department details based on selection in the first grid. I am using two normal ExtJS grid…
SharpCoder
  • 18,279
  • 43
  • 153
  • 249
0
votes
0 answers

ExtJs Object # has no method 'indexOf'

I am trying to edit a number of cells in the grid. I am able to edit all cells except one cell. All cells have same data type i.e. string. When I click on that particular cell, I get the error Uncaught TypeError: Object # has no method…
Vabbs
  • 107
  • 14
1 2 3
9
10