Search Type: Posts; User: fay
Search: Search took 0.06 seconds.
-
26 Aug 2011 6:55 AM
Jump to post Thread: load data into jsonstore by fay
- Replies
- 6
- Views
- 847
(Note, I'm assuming this is Ext 3.x as you're using JsonStore.)
Double-check that your store is valid: add a load handler, and using Firebug, put a BP in it, and examine the contents of "store".
... -
26 Aug 2011 6:36 AM
Jump to post Thread: Where are forum settings? by fay
- Replies
- 3
- Views
- 1,059
This will get you to it when you're logged in: http://www.sencha.com/forum/usercp.php
(Think this has been reported to Sencha already.) -
26 Aug 2011 6:35 AM
- Replies
- 2
- Views
- 1,062
Yep, link's missing. This will get you to it: http://www.sencha.com/forum/usercp.php
-
26 Aug 2011 6:31 AM
Jump to post Thread: load data into jsonstore by fay
- Replies
- 6
- Views
- 847
Use Firefox + Firebug and take a look at what is being returned by usersdata.js in the console.
-
26 Aug 2011 6:28 AM
- Replies
- 4
- Views
- 1,033
Take a look at Ext.data.Model and the data package.
-
29 Jul 2011 2:04 AM
Jump to post Thread: Site issues by fay
- Replies
- 93
- Views
- 13,433
Folks,
It's only a minor thing, but after you download Ext JS 4.0.2a, the "Thank You" page points you to the legacy "Learning Center" page... -
7 Jul 2011 6:53 AM
Jump to post Thread: Chart in Window isn't visible by fay
- Replies
- 7
- Views
- 907
Have you looked at the tutorials, e.g., HTML Page Setup?
-
7 Jul 2011 3:27 AM
Jump to post Thread: scripting error in IE by fay
- Replies
- 2
- Views
- 1,396
Use ext-all-debug.js to get a better idea of where the error is occuring.
-
20 Jun 2011 6:40 AM
Jump to post Thread: Model name by fay
- Replies
- 3
- Views
- 716
'AM.model.User' - as that's the name you've given your model.
-
20 Jun 2011 2:46 AM
Jump to post Thread: Model name by fay
- Replies
- 3
- Views
- 716
The problem is that you just mixed up the examples... There would be no reason for the Ext.data.Model example to reflect the stuff that's in the MVC guide.
-
17 Jun 2011 4:56 AM
- Replies
- 2
- Views
- 673
Would you not just read the model config?
-
16 Jun 2011 5:36 AM
Jump to post Thread: Migrating from Ext 3.x to Ext 4.0.2 by fay
- Replies
- 1
- Views
- 722
See: http://www.sencha.com/forum/showthread.php?136973-how-to-migration-ExtJS-3-To-Ext-4&p=613872&viewfull=1#post613872
-
16 Jun 2011 4:57 AM
Jump to post Thread: JSON IE 9 by fay
- Replies
- 3
- Views
- 1,676
Have you double-checked that your JSON is valid with www.jsonlint.com? With IE it tends to be a trailing comma issue, other browsers are more tolerant of that.
-
15 Jun 2011 7:39 AM
Jump to post Thread: Button pressed by fay
- Replies
- 1
- Views
- 447
See the toggle() method.
-
15 Jun 2011 7:37 AM
- Replies
- 10
- Views
- 2,210
Note, that I put in (cell[1], cell[0]) - row and col are swapped
-
15 Jun 2011 4:19 AM
- Replies
- 4
- Views
- 1,499
Would you happen to have disableCaching set to false?
-
15 Jun 2011 12:37 AM
- Replies
- 9
- Views
- 1,078
I think this is what you're referring to (in section III): http://docs.sencha.com/ext-js/4-0/#/guide/class_system
-
15 Jun 2011 12:30 AM
- Replies
- 2
- Views
- 879
Take the \examples\grid\edit-grid.js example and change the load callback to:
store.load({
callback: function(){
grid.startEditing(0,1);
}
}); -
15 Jun 2011 12:24 AM
- Replies
- 10
- Views
- 2,210
From the docs for getSelectedCell:
... so try:
var cell = this.grid.getSelectionModel().getSelectedCell();
this.grid.getColumnModel().getCellEditor(cell[1],... -
14 Jun 2011 2:54 AM
Jump to post Thread: How to get Title Text of Active Tab by fay
- Replies
- 1
- Views
- 1,290
Assuming 'TabPanel' is the id you've assigned your Ext.TabPanel:
var title = Ext.getCmp('TabPanel').getActiveTab().title;
// Note: Make sure you use the setTitle() method if you want to... -
11 Jun 2011 11:50 PM
Jump to post Thread: Grid Row MouseOver / MouseOut by fay
- Replies
- 2
- Views
- 1,553
Take the \examples\grid\array-grid.js example and add itemmouseenter and itemmouseleave listeners:
var grid = Ext.create('Ext.grid.Panel', {
// ...
listeners: {
itemmouseenter:... -
10 Jun 2011 7:28 AM
Jump to post Thread: problem with grid by fay
- Replies
- 6
- Views
- 752
Why do you need the hidden "id_hopital" column when you have this data available through the store?
-
10 Jun 2011 5:01 AM
Jump to post Thread: Grid issues by fay
- Replies
- 2
- Views
- 559
RE: loading box. See Ext.grid.View's loadMask config.
EDIT: Btw, this was answered earlier - see:... -
10 Jun 2011 4:59 AM
Jump to post Thread: How to set the row height for grid? by fay
- Replies
- 4
- Views
- 5,646
Also take a look at the Ext.grid.View getRowClass method.
-
10 Jun 2011 4:55 AM
Jump to post Thread: avoiding back navigation by fay
- Replies
- 3
- Views
- 1,007
Take a look at Ext.History.
Results 1 to 25 of 119
