Tagged Questions
0
votes
1answer
77 views
the Loading… Message in Grid when there is no data. ExtJs Grid
In my application, when there are no records on DB, the json i am receiving is as below.
JSON Message: {"totalCount":0,"responseObject":[]}
But in the grid the Loading... mask is not going off. It ...
1
vote
0answers
197 views
EXTJS Change default behaviour of the GridPanel row selection
I have a gridPanel based on EXT4. When I select a particular row, the row highlighting works based on the "id" given to the particular row. How do I change the default implementation to something to ...
2
votes
1answer
146 views
prevent keyboard multiselect for gridpanels
I want a single select grid, at first I did not include any selection model configuration because that is the default. This works fine for mouse selections but if I key SHIFT + END it selects all ...
2
votes
1answer
594 views
container control as a grid editor does not update values
So I have a grid with two columns, the first has just text, the second needs to have a custom control (with a checkbox and a combo box)
Check the screenie:
Here is a link to a screenie:
The ...
0
votes
1answer
524 views
How to group column header for a grid nested inside a form for ExtJs
I have a grid panel nested inside a form panel. The grid contain grouped header, but the sub column of the grouped header are not loading properly. Any idea what I'm doing wrong?
form = ...
0
votes
1answer
789 views
Extjs 4.1.1 linking a contextmenu to a grid
Using Extjs 4.1.1
I am attempting to link a contextmenu (right click initiated menu) to a grid. So, I have the Ext.menu.menu and when a user right clicks my grid I want to display the menu using ...
0
votes
1answer
433 views
Tree to grid node dragging working in Ext4.0 but 4.1
I've a tree-panel as
var t = new Ext.TreePanel({
.
.
store: <loaded dynamically>
viewConfig: {
allowCopy: true,
copy: true,
plugins:{
ptype: ...
0
votes
0answers
175 views
ExtJS: Panel hides when collapse
I'm using ExtJS 4.1 and I have a little problem which I can't handle.
I have Viewport and GridPanel inside.
I want that GridPanel to be collapsible but when I collapse this panel header also ...
4
votes
2answers
7k views
Creating a Dynamic Grid with ExtJS
I'm trying to make a Dynamic Grid class (where I do not know any information about the columns but they are given from the json response and the gird prepares itself accordingly). Here I have found ...