Search Type: Posts; User: abhijit
Search: Search took 0.02 seconds.
-
18 Apr 2013 2:44 AM
- Replies
- 4
- Views
- 2,290
Thanks a lot for that comprehensive explanation. Seeing that error all of a sudden was more frustrating than worrying because of being unable to figure out how it appeared!
-
15 Dec 2012 5:07 AM
Jump to post Thread: Load nested data on record save by abhijit
- Replies
- 2
- Views
- 191
Thanks Mitchell, I got that. Is there any workaround that you can suggest?
Currently, I'm doing this -
Ext.StoreMgr.get('Master').on({
write: function(st, operation){
if... -
12 Dec 2012 1:32 AM
Jump to post Thread: Load nested data on record save by abhijit
- Replies
- 2
- Views
- 191
I want to create a 'details' record on the server and send it back when the 'master' is created.
The 'details' record is NOT created in the front. Instead the 'master' record is created and... -
12 Nov 2012 2:21 AM
- Replies
- 5
- Views
- 3,987
.x-column-header-text {
display : block;
overflow : hidden;
text-overflow : ellipsis;
} -
12 Nov 2012 1:54 AM
- Replies
- 4
- Views
- 410
Seems to be resolved with the latest version of ExtJs
-
29 Oct 2012 1:10 PM
- Replies
- 4
- Views
- 706
As mentioned, initial pointers given by Condor from this forum thread. This solution was for ExtJs 3.
After that I got a big hint from bogc in this forum thread.
Then I just tied everything... -
29 Oct 2012 7:29 AM
- Replies
- 4
- Views
- 706
I know. But that doesn't give the same effect as what I'm looking for. I did find this implementation by Condor for Extjs 3.
Although, there isn't a ExtJs 4 implementation, I'm trying to create... -
29 Oct 2012 12:44 AM
- Replies
- 4
- Views
- 706
Let's say a Grid has the same value in a particular column, like so -
39632
Would like to show the repeated rows in this fashion -
39633 -
30 Aug 2012 8:04 PM
- Replies
- 7
- Views
- 1,124
After going through ExtJs code some more, especially the 'Ext.grid.Lockable' mixin, this is my understanding -
When you set 'enableLocking: true' on a Grid Panel, the 'Ext.grid.Lockable' mixin steps... -
30 Aug 2012 2:28 AM
- Replies
- 7
- Views
- 1,124
After some more head banging and going through 'Editing' plugin a little more in detail, I understood how the 'getEditor' and 'setEditor' functions are getting added.
So, this override seems... -
29 Aug 2012 11:28 PM
- Replies
- 7
- Views
- 1,124
I overrode the 'Ext.grid.plugin.CellEditing' plugin's two methods - 'startEdit' and 'getEditor'
However, I see that the plugin had 'getEditor()' in a number of places. As of now, those lines don't... -
29 Aug 2012 8:03 PM
- Replies
- 7
- Views
- 1,124
Scott,
I did what you suggested - the gird is now being reconfigured by the store's 'metachange' event.
However, the problem still persists - I still get the following error when I try to edit... -
29 Aug 2012 8:51 AM
- Replies
- 7
- Views
- 1,124
In our scenario, the column configurations is not known in the client and is received from the server.
Is there any other solution? Even if you can suggest me some other alternative ways to... -
29 Aug 2012 4:22 AM
- Replies
- 1
- Views
- 323
ExtJs 4.1.1
I posted this earlier but somehow don't see the thread. In case of duplication, please delete.
I have a EditorGrid which is created with reconfigure. The editorgrid consists of... -
29 Aug 2012 4:11 AM
- Replies
- 7
- Views
- 1,124
The grid renders perfectly, with the locked columns also. However, when I double-click on a cell to edit it, I get an error "columnHeader.getEditor is not a function".
This is generated in the... -
19 Aug 2012 12:03 PM
- Replies
- 11
- Views
- 1,682
Essentially, for a reconfigured grid, when no model is created explicitely, and the grid has cell editing plugin, when you change the data of any cell, the store update is not fired.
The store is... -
10 Aug 2012 1:29 PM
- Replies
- 11
- Views
- 1,682
Hi Don,
My store is created like this -
Ext.define('App.store.Dynamic', {
extend : 'Ext.data.Store'
,fields : []
,proxy : {
type : 'rest' -
10 Aug 2012 1:16 PM
- Replies
- 4
- Views
- 410
Hi,
I'm having a grid reconfigured dynamically. The first column has 'locked: true' and the grid has 'lockable: true' set.
However, during the reconfigure, it fails and gives a ... -
9 Aug 2012 3:00 AM
- Replies
- 11
- Views
- 1,682
This error is existing in 4.1.1. Applied the override and then things worked smoothly.
Details -
ExtJs Version 4.1.1
Build date: 2012-07-04 21:23:42 (65ff594cd80b9bad45df640c22cc0adb52c95a7b) -
11 Jul 2012 6:02 AM
- Replies
- 1
- Views
- 619
When a grid has many columns, and the grid is reconfigured, the entire grid scrolls to the extreme left.
Is there any way I can save the grid's last horizontal scroll position? That way, I can... -
9 Mar 2012 12:57 PM
- Replies
- 5
- Views
- 1,317
Cleaned up the code. Also including the HTML
The override required is (override.js) -
Ext.define('Override.grid.header.DropZone', {
override : 'Ext.grid.header.DropZone'
,onNodeOver:... -
21 Dec 2011 11:05 PM
- Replies
- 1
- Views
- 660
I have a grid with columns configured as so -
columns : [{
text : 'Group Header 1',
columns : [{
text : 'Column 1'
},{
text : 'Column 2'
}] -
13 Dec 2011 3:18 AM
- Replies
- 5
- Views
- 1,317
Mitchell, with the pointers you gave we came up with this -
Ext.define('Override.grid.header.DropZone', {
override : 'Ext.grid.header.DropZone'
,onNodeOver: function(target, dd, e, data){... -
12 Dec 2011 9:33 PM
- Replies
- 5
- Views
- 1,317
Mitchell, that seems the right way to do it. However, 'moveHeader' never seems to get called!
From what I understand there is a plugin called HeaderReorderer which uses DropZone and DragZone which... -
12 Dec 2011 9:43 AM
- Replies
- 5
- Views
- 1,317
Hi,
I have a grid with multiple columns. I would like to allow reordering of some columns only e.g. if the grid consists of columns 'A', 'B', to 'G' (headers), I would like the user to reorder...
Results 1 to 25 of 35
